/* ========== GLOBAL STYLES ========== */
:root {
    --primary: #FFE6F2;        
    --secondary: #FFF5FA;      
    --accent: rgba(124, 6, 99, 0.95); 
    --accent-solid: #7C0663;  
    --accent-light: #D81B60;   
    --text: #4A235A;           
    --light: #F8BBD0;         
    --dark: #6A1B9A;          
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --shadow: 0 8px 30px rgba(124, 6, 99, 0.15);
    --shadow-hover: 0 15px 40px rgba(124, 6, 99, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--white) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-solid), transparent);
    border-radius: 3px;
}

.section-title h2 span {
    color: var(--accent-solid);
    position: relative;
}

.section-title p {
    color: var(--text);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* ========== PRELOADER ========== */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--white));
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light);
    border-top: 4px solid var(--accent-solid);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== NAVBAR ========== */
.navbar {
    background: linear-gradient(135deg, 
        rgba(124, 6, 99, 0.95), 
        rgba(216, 27, 96, 0.9));
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(124, 6, 99, 0.2);
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: linear-gradient(135deg, 
        rgba(124, 6, 99, 0.98), 
        rgba(216, 27, 96, 0.95));
    box-shadow: 0 6px 25px rgba(124, 6, 99, 0.3);
}

.main-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none !important; 
    outline: none !important; 
    border: none !important;
    -webkit-tap-highlight-color: transparent;
    padding-left: 5px;
}

.main-logo:link,
.main-logo:visited,
.main-logo:hover,
.main-logo:active,
.main-logo:focus {
    text-decoration: none !important;
    color: var(--white);
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
}

.main-logo span {
    color: #FFD6EC;
    margin-left: 5px;
    text-decoration: none !important;
}

.main-logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 24px;
    padding: 5px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    color: #FFD6EC;
    transform: scale(1.1);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 214, 236, 0.3);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 10px 22px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.language-switcher {
    margin-left: 20px;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.language-switcher select {
    border: none;
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    width: 100%;
}

.language-switcher select option {
    background: rgba(124, 6, 99, 0.95);
    color: var(--white);
    padding: 10px;
}

/* ========== TAJ SLIDER - 100% RTL COMPATIBLE ========== */
.slider-area {
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.taj-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.taj-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taj-slide.active {
    opacity: 1;
    visibility: visible;
}

.taj-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.taj-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.taj-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(124, 6, 99, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.8s ease forwards;
    margin: 0 20px;
}

.taj-slide-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.taj-slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text);
    opacity: 0.9;
    line-height: 1.6;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation */
.taj-slider-prev,
.taj-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    border: none;
    outline: none;
}

.taj-slider-prev {
    left: 20px;
}

.taj-slider-next {
    right: 20px;
}

.taj-slider-prev:hover,
.taj-slider-next:hover {
    background: rgba(124, 6, 99, 0.8);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.taj-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.taj-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.taj-dot.active {
    background: var(--accent-solid);
    transform: scale(1.2);
}

/* ========== RTL SLIDER SUPPORT ========== */
[dir="rtl"] .taj-slider-prev {
    left: auto;
    right: 20px;
}

[dir="rtl"] .taj-slider-next {
    right: auto;
    left: 20px;
}

[dir="rtl"] .taj-slider-prev i,
[dir="rtl"] .taj-slider-next i {
    transform: scaleX(-1);
}

[dir="rtl"] .taj-slide-content {
    text-align: center;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(124, 6, 99, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(124, 6, 99, 0.4);
    color: var(--white);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp));
}

.mr-2 {
    margin-right: 8px;
}

[dir="rtl"] .mr-2 {
    margin-right: 0;
    margin-left: 8px;
}

/* ========== ABOUT ========== */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    margin-bottom: 25px;
    color: var(--text);
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-solid), var(--accent-light));
    border-radius: 3px;
}

.about-content p {
    margin-bottom: 25px;
    color: var(--text);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.05rem;
}

.achievements {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.achievement-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-solid);
}

.achievement-item h4 {
    font-size: 2.8rem;
    color: var(--accent-solid);
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-solid), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    color: var(--text);
    font-weight: 500;
    margin: 0;
}

/* ========== FEATURES ========== */
.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-solid), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-solid);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(124, 6, 99, 0.2);
    border: 3px solid var(--light);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    border-color: var(--accent-solid);
}

.feature-icon i {
    font-size: 36px;
    color: var(--accent-solid);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========== COLLECTIONS ========== */
#collections-container {
    margin: -15px;
}

#collections-container > .col-lg-3 {
    padding: 15px;
}

.collection-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
    margin: 0;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(124, 6, 99, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.collection-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-info {
    padding: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.collection-info h4 {
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 600;
}

.collection-card:hover .collection-info h4 {
    color: var(--white);
}

.collection-card:hover .btn-primary.btn-sm {
    background: linear-gradient(135deg, var(--white), #FFD6EC);
    color: var(--accent-solid);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* ========== PRODUCT MODAL ========== */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 6, 99, 0.95);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    max-width: 800px;
    margin: 40px auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image {
    width: 100%;
    height: 300px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.color-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.color-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

.color-thumb.active {
    border-color: var(--accent-solid);
    transform: scale(1.1);
}

.color-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 25px;
}

.color-options,
.size-options {
    margin: 25px 0;
}

.color-options h4,
.size-options h4 {
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
}

.color-buttons,
.size-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--accent-solid);
    transform: scale(1.1);
    box-shadow: 0 0 0 2px var(--light);
}

.size-btn {
    padding: 10px 25px;
    background: var(--primary);
    border: 2px solid var(--light);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.size-btn:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.size-btn.active {
    background: var(--accent-solid);
    color: var(--white);
    border-color: var(--accent-solid);
    transform: translateY(-2px);
}

/* ========== PLATFORM SECTION WITH SLIDER NAVIGATION ========== */
.platform-section-wrapper {
    position: relative;
    padding: 0 40px;
}

/* Platform Navigation Buttons */
.platform-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 30;
    pointer-events: none;
}

.platform-nav-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(124, 6, 99, 0.3);
    pointer-events: auto;
    z-index: 31;
}

.platform-nav-btn:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--accent-light), var(--accent-solid));
    box-shadow: 0 8px 25px rgba(124, 6, 99, 0.5);
    border-color: var(--white);
}

.platform-nav-btn:active {
    transform: scale(0.95);
}

.platform-nav-btn i {
    transition: transform 0.3s ease;
}

.platform-nav-btn:hover i {
    transform: scale(1.2);
}

.platform-nav-prev {
    margin-left: -20px;
}

.platform-nav-next {
    margin-right: -20px;
}

/* Disabled state */
.platform-nav-btn.disabled,
.platform-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: linear-gradient(135deg, #999, #777);
}

/* Platform Slider Container */
.platform-slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px 5px;
    margin: 0 -5px;
}

.platform-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.platform-slide {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px;
    transition: all 0.3s ease;
}

/* Platform Image Cards in Slider */
.platform-slide .platform-image-card {
    height: 280px;
    width: 100%;
    margin: 0;
}

/* Platform Image Counter */
.platform-counter {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: var(--accent-solid);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.platform-counter span {
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(124, 6, 99, 0.2);
}

/* Animation for slides */
@keyframes slideFade {
    from {
        opacity: 0.7;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.platform-slide.active-slide {
    animation: slideFade 0.5s ease;
}

/* ========== PLATFORM IMAGES (ORIGINAL STYLES PRESERVED) ========== */
.platform-images {
    position: relative;
}

.platform-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 280px;
    cursor: pointer;
}

.platform-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.platform-image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.platform-image-card:hover img {
    transform: scale(1.1);
}

.platform-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(124, 6, 99, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.platform-image-card:hover .platform-image-overlay {
    transform: translateY(0);
}

.platform-image-text h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.platform-image-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== PLATFORM ZOOM INDICATOR ========== */
.zoom-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(124, 6, 99, 0.95);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 20;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 2px solid white;
    transform: scale(0.9);
}

.platform-image-card:hover .zoom-indicator {
    opacity: 1;
    transform: scale(1);
}

/* ========== PLATFORM ZOOM MODAL ========== */
.platform-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 6, 99, 0.98);
    z-index: 99999;
    overflow-y: auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-zoom-modal.show {
    opacity: 1;
}

.platform-zoom-content {
    background: var(--white);
    max-width: 90%;
    max-height: 90vh;
    margin: 40px auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.platform-zoom-modal.show .platform-zoom-content {
    transform: scale(1);
}

.platform-zoom-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.platform-zoom-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-platform-zoom {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.close-platform-zoom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.platform-zoom-body {
    padding: 30px;
}

.zoom-image-container {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 15px;
    background: #f8f9fa;
    position: relative;
    border: 2px solid var(--light);
}

.zoomed-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.1s ease;
    cursor: default;
}

.zoomed-image.grabbing {
    cursor: grabbing !important;
}

.zoom-description {
    text-align: center;
    margin-top: 20px;
    color: var(--text);
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--accent-solid);
}

/* ========== PLATFORM ZOOM NAVIGATION ========== */
.zoom-nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
}

.zoom-prev, .zoom-next {
    background: rgba(124, 6, 99, 0.8);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.zoom-prev:hover, .zoom-next:hover {
    background: rgba(216, 27, 96, 0.9);
    transform: scale(1.1);
}

.zoom-nav-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.zoom-nav-buttons button:disabled:hover {
    transform: none;
    background: rgba(124, 6, 99, 0.8);
}

.platform-image-counter {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 100;
}

/* Platform section image grid responsiveness */
.platform-images .row {
    margin: -10px;
}

.platform-images .row > [class*="col-"] {
    padding: 10px;
}

.platform-images .mb-4 {
    margin-bottom: 0 !important;
}

/* Platform Features */
.platform-features {
    padding-left: 20px;
}

.platform-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.platform-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.platform-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.platform-feature-item:hover .platform-feature-icon {
    transform: rotateY(180deg);
}

.platform-feature-content {
    flex: 1;
}

.platform-feature-content h4 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

/* ========== TEAM ========== */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-solid), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 600;
}

.team-info p {
    color: var(--accent-solid);
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-solid);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-solid);
    box-shadow: 0 5px 15px rgba(124, 6, 99, 0.3);
}

/* ========== CONTACT FORM ========== */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--light);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-solid), var(--accent-light));
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 15px 20px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-solid);
    box-shadow: 0 0 0 3px rgba(124, 6, 99, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Form Status Messages */
#formStatus {
    margin-bottom: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, 
        rgba(124, 6, 99, 0.95),
        rgba(106, 27, 154, 0.9));
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(255, 214, 236, 0.8),
        rgba(216, 27, 96, 0.8));
}

.footer-widget h3,
.footer-widget h4 {
    color: #FFD6EC;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h3::after,
.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFD6EC, transparent);
    border-radius: 3px;
}

.footer-widget h3 span {
    color: var(--white);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 15px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
}

.footer-widget ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FFD6EC;
}

.footer-widget ul li a:hover {
    color: #FFD6EC;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-widget ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.contact-info i {
    color: #FFD6EC;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--white);
    color: var(--accent-solid);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.newsletter-form {
    display: flex;
    margin-top: 25px;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: linear-gradient(135deg, #FFD6EC, var(--white));
    color: var(--accent-solid);
    border: none;
    padding: 15px 30px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--white), #FFD6EC);
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #FFD6EC;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ========== FLOATING BUTTONS ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
    border: 3px solid white;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-solid), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(124, 6, 99, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border: 3px solid white;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(124, 6, 99, 0.4);
    color: var(--white);
}

/* ========== NOTIFICATION STYLES ========== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-left: 4px solid var(--accent-solid);
    z-index: 99999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #4CAF50;
}

.notification-error {
    border-left-color: #f44336;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 20px;
}

.notification-content p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.close-notification {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text);
    opacity: 0.6;
}

.close-notification:hover {
    opacity: 1;
}

/* ========== RTL SUPPORT ========== */
[dir="rtl"] body {
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    padding-right: 0;
}

[dir="rtl"] .ml-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .navbar-collapse {
    text-align: right;
}

[dir="rtl"] .main-logo span {
    margin-left: 0;
    margin-right: 5px;
}

[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

[dir="rtl"] .about-content {
    text-align: right;
}

[dir="rtl"] .about-content h3::after {
    left: auto;
    right: 0;
}

/* RTL Platform Navigation */
[dir="rtl"] .platform-nav-prev {
    margin-left: 0;
    margin-right: -20px;
}

[dir="rtl"] .platform-nav-next {
    margin-right: 0;
    margin-left: -20px;
}

[dir="rtl"] .platform-nav-btn i {
    transform: scaleX(-1);
}

[dir="rtl"] .platform-nav-btn:hover i {
    transform: scaleX(-1.2);
}

[dir="rtl"] .platform-feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .platform-feature-icon {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .platform-features {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .platform-feature-item:hover {
    transform: translateX(-10px);
}

[dir="rtl"] .platform-image-text {
    text-align: right;
}

[dir="rtl"] .zoom-indicator {
    right: auto;
    left: 15px;
}

[dir="rtl"] .platform-zoom-content {
    text-align: right;
}

[dir="rtl"] .zoom-description {
    border-left: none;
    border-right: 4px solid var(--accent-solid);
}

[dir="rtl"] .team-info {
    text-align: center;
}

[dir="rtl"] .team-social {
    justify-content: center;
}

[dir="rtl"] .contact-form {
    text-align: right;
}

[dir="rtl"] .contact-form::before {
    left: 0;
    right: 0;
}

[dir="rtl"] .form-control {
    text-align: right;
}

[dir="rtl"] .footer-widget {
    text-align: right;
}

[dir="rtl"] .footer-widget h3::after,
[dir="rtl"] .footer-widget h4::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-widget ul li a {
    padding-left: 0;
    padding-right: 0;
}

[dir="rtl"] .footer-widget ul li a::before {
    content: '←';
    left: auto;
    right: -20px;
}

[dir="rtl"] .footer-widget ul li a:hover {
    padding-left: 0;
    padding-right: 20px;
    transform: translateX(-5px);
}

[dir="rtl"] .footer-widget ul li a:hover::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .contact-info li {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-info i {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .social-links {
    justify-content: flex-end;
}

[dir="rtl"] .newsletter-form input {
    border-radius: 0 25px 25px 0;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

[dir="rtl"] .newsletter-form button {
    border-radius: 25px 0 0 25px;
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

[dir="rtl"] .newsletter-form button:hover {
    transform: translateX(-5px);
    box-shadow: 5px 0 15px rgba(255, 255, 255, 0.2);
}

[dir="rtl"] .whatsapp-btn {
    right: auto;
    left: 30px;
}

[dir="rtl"] .back-to-top {
    right: auto;
    left: 30px;
}

[dir="rtl"] .notification {
    right: auto;
    left: 20px;
    transform: translateX(-120%);
    border-left: none;
    border-right: 4px solid var(--accent-solid);
}

[dir="rtl"] .notification.show {
    transform: translateX(0);
}

[dir="rtl"] .notification-success {
    border-right-color: #4CAF50;
    border-left-color: transparent;
}

[dir="rtl"] .notification-error {
    border-right-color: #f44336;
    border-left-color: transparent;
}

[dir="rtl"] .product-details {
    text-align: right;
}

[dir="rtl"] .modal-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .close-modal {
    margin-left: 0;
    margin-right: auto;
}

/* ========== RESPONSIVE STYLES FOR PLATFORM NAVIGATION ========== */
@media (max-width: 991px) {
    .platform-slide {
        flex: 0 0 calc(50% - 20px);
    }
    
    .platform-section-wrapper {
        padding: 0 30px;
    }
    
    [dir="rtl"] .navbar-collapse {
        text-align: right;
    }
    
    [dir="rtl"] .navbar-nav {
        margin-right: 0;
    }
    
    [dir="rtl"] .language-switcher {
        margin-right: 0;
        margin-left: 0;
    }
    
    [dir="rtl"] .platform-features {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .platform-slide {
        flex: 0 0 calc(100% - 20px);
    }
    
    .platform-section-wrapper {
        padding: 0 25px;
    }
    
    .platform-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .platform-nav-prev {
        margin-left: -15px;
    }
    
    .platform-nav-next {
        margin-right: -15px;
    }
    
    .platform-image-card {
        height: 220px;
    }
    
    [dir="rtl"] .platform-nav-prev {
        margin-right: -15px;
    }
    
    [dir="rtl"] .platform-nav-next {
        margin-left: -15px;
    }
}

@media (max-width: 576px) {
    .platform-section-wrapper {
        padding: 0 20px;
    }
    
    .platform-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .platform-image-card {
        height: 200px;
    }
    
    .platform-image-overlay {
        padding: 15px;
    }
    
    .platform-image-text h5 {
        font-size: 1rem;
    }
    
    .platform-counter span {
        padding: 4px 12px;
        font-size: 12px;
    }
    
    .custom-nav-buttons {
        display: none; 
    }
    
    .owl-dots {
        bottom: 10px;
    }
}