/* Handpicked Services Page Styles */
/* White background */
body {
    background: var(--white) !important;
    background-attachment: fixed !important;
}

.main-header {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: var(--secondary-light) !important;
}

.nav-link:hover {
    color: var(--primary-light) !important;
}

.logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Hero Section */
.page-hero {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}



.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-title {
    color: var(--secondary-light);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-hero .hero-subtitle {
    color: var(--secondary-light);
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-weight: 600;
    color: var(--secondary-light);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-tab:hover {
    border-color: var(--secondary-light);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--secondary-light);
    border-color: var(--secondary-light);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Services Grid */
.services-selection {
    padding: 2rem 0 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    min-height: 300px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.service-card.hidden {
    display: none;
}

.service-card.highlight {
    border: 3px solid #C8AB83;
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Service Header */
.service-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    flex-wrap: wrap;
}



.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-light);
    margin: 0;
    letter-spacing: -0.02em;
    flex: 1;
    padding-right: 1rem;
}

.service-category-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--secondary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

/* Service Details */
.service-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.service-description {
    color: var(--secondary-light);
    line-height: 1.6;
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* .service-price styles removed - no pricing display */

/* Service Links and Button Container */
.service-bottom {
    margin-top: auto;
}

/* Service Links */
.service-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.info-link {
    color: var(--secondary-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.info-link:hover {
    border-bottom-color: var(--secondary-light);
    opacity: 0.9;
}

/* Add Service Button */
.add-service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.add-service-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
}

.add-service-btn.added {
    background: rgba(200, 171, 131, 0.2);
    border-color: #C8AB83;
}

.add-service-btn.disabled {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.6;
}

.add-service-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* .service-price.coming-soon styles removed - no pricing display */

/* Better Price Section */
.better-price-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.better-price-content h3 {
    color: var(--secondary-light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.better-price-content p {
    color: var(--secondary-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.custom-quote-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C8AB83, var(--primary-light));
    color: var(--secondary-dark);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 171, 131, 0.4);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-medium);
}

.modal-close:hover {
    color: var(--primary-dark);
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.service-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-modal-content h2 {
    padding: 2rem 2rem 1rem;
    margin: 0;
    color: var(--primary-dark);
}

#modalServiceOptions {
    padding: 2rem;
}

.service-option-group {
    margin-bottom: 2rem;
}

.service-option-group h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-option-item {
    background: linear-gradient(135deg, #23231B 0%, #3B534A 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option-item:hover {
    border-color: var(--primary-light);
    transform: translateX(5px);
    background: linear-gradient(135deg, #3B534A 0%, #23231B 100%);
}

.service-option-item.selected {
    border-color: #C8AB83;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(59, 83, 74, 0.2);
}

.service-option-item.selected .option-title {
    color: var(--primary-dark);
}

.service-option-item.selected .option-description {
    color: var(--gray-medium);
    opacity: 1;
}

.service-option-item.selected .option-price {
    color: #C8AB83;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-title {
    font-weight: 600;
    color: #FFFEE0;
    font-size: 1.1rem;
}

/* .option-price styles removed - no pricing display */

.option-description {
    color: #FFFEE0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.modal-add-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-add-btn:hover {
    background: var(--secondary-green);
}

.modal-add-btn:disabled {
    background: var(--gray-medium);
    cursor: not-allowed;
}

/* Modal Equipment Panel - Glass Effect Without Text */
.equipment-display-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 330px), -50%);
    width: 600px;
    max-width: 600px;
    height: 80vh;
    max-height: 80vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 202, 170, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(59, 83, 74, 0.2);
    padding: 3rem;
    z-index: 3002;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Benefits Display Panel - Similar to Equipment Panel */
.benefits-display-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 330px), -50%);
    width: 600px;
    max-width: 600px;
    height: 80vh;
    max-height: 80vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 202, 170, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(59, 83, 74, 0.2);
    padding: 3rem;
    z-index: 3002;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.benefits-display-panel.show {
    opacity: 1;
    pointer-events: auto;
}

.benefits-display-panel h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefits-display-panel p {
    color: var(--secondary-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}
.equipment-display-panel.show {
    opacity: 1;
    pointer-events: auto;
}

.service-modal.shift-left .service-modal-content {
    transform: translateX(-330px);
}

.equipment-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    max-height: calc(80vh - 6rem);
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}
/* Video Editing Options */
.editing-options-group {
    margin-bottom: 1.5rem;
}

.editing-options-group h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.editing-number-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
}

.platform-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.platform-option {
    padding: 0.75rem;
    background: linear-gradient(135deg, #23231B 0%, #3B534A 100%);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #FFFEE0;
}

.platform-option:hover {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, #3B534A 0%, #23231B 100%);
}

.platform-option.selected {
    border-color: #C8AB83;
    background: var(--white);
    color: var(--primary-dark);
}

.platform-option.selected .orientation-description {
    color: var(--gray-medium);
}

.orientation-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.orientation-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 224, 0.7);
    line-height: 1.3;
}

.addon-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.addon-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: linear-gradient(135deg, #23231B 0%, #3B534A 100%);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addon-option:hover {
    background: linear-gradient(135deg, #3B534A 0%, #23231B 100%);
}

.addon-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.addon-option span {
    color: #FFFEE0;
}

.addon-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.addon-benefit-link {
    color: #FFFEE0;
    font-size: 0.75rem;
    text-decoration: none;
    border-bottom: 1px dotted #FFFEE0;
}

/* .addon-price-label styles removed - no pricing display */

/* Booking Panel */
.booking-panel-container {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

/* Booking popup animation */
.booking-panel.popup-animation {
    animation: bookingPopup 0.5s ease;
}

@keyframes bookingPopup {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-item.item-added {
    animation: itemAdded 0.6s ease;
}

@keyframes itemAdded {
    0% {
        transform: translateX(20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.booking-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow-hover);
    transition: all 0.3s ease;
    position: relative;
}

.booking-toggle:hover {
    transform: scale(1.1);
    background: var(--secondary-green);
}

.booking-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.booking-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #C8AB83;
    color: var(--secondary-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.booking-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-hover);
    display: none;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.booking-panel p {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
}

.booking-panel p:last-child {
    color: var(--secondary-light);
    font-weight: 400;
    margin: 15px 0 0 0;
    font-size: 14px;
}

.booking-panel.open {
    display: flex;
}

.booking-panel h3 {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-light);
    margin: 0;
    border-radius: 14px 14px 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
}

.booking-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
}

.booking-items::-webkit-scrollbar {
    width: 8px;
}

.booking-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.booking-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.booking-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.booking-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.booking-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.booking-item-name {
    font-weight: 600;
    color: var(--secondary-light);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    flex: 1;
}

.booking-item-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary-light);
    opacity: 0.8;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.booking-item-details-list li {
    margin-bottom: 0.5rem;
}

.booking-item-details-list li:last-child {
    margin-bottom: 0;
}

/* Booking item pricing styles removed - no pricing display */

.booking-item-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.booking-item-remove:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-light);
    transform: scale(1.1);
}



.booking-summary {
    padding: 1.25rem 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 14px 14px;
}

.booking-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.booking-header h3 {
    padding: 0;
    background: none;
    border: none;
    margin: 0;
}

/* Booking total styles removed - no pricing display */

.checkout-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    text-align: center;
}

.checkout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* RTL Support */
html[dir="rtl"] .booking-panel-container {
    right: auto;
    left: 30px;
}

html[dir="rtl"] .booking-panel {
    right: auto;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: minmax(auto, 350px);
        justify-content: center;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .booking-panel {
        width: calc(100vw - 60px);
        right: -15px;
    }
    
    .booking-panel-container {
        right: 20px;
        bottom: 20px;
    }
    
    .service-modal-content {
        max-width: 95%;
    }
    
    .equipment-display-panel {
        display: none !important;
    }
    
    .service-modal.shift-left .service-modal-content {
        transform: translateX(0);
    }
}

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

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    color: var(--secondary-light);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(203, 202, 170, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--secondary-light);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover svg {
    fill: var(--primary-dark);
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* RTL Support for Arabic Version */
[dir="rtl"] .equipment-display-panel {
    transform: translate(calc(-50% - 330px), -50%);
}

[dir="rtl"] .benefits-display-panel {
    transform: translate(calc(-50% - 330px), -50%);
}

[dir="rtl"] .service-modal.shift-left .service-modal-content {
    transform: translateX(330px);
}

[dir="rtl"] .modal-close-btn {
    left: 1.5rem;
    right: auto;
}

[dir="rtl"] .modal-close {
    left: 1rem;
    right: auto;
}

[dir="rtl"] .service-title {
    padding-left: 1rem;
    padding-right: 0;
}

[dir="rtl"] .service-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .service-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .tier-options {
    text-align: right;
}

[dir="rtl"] .add-on-item {
    text-align: right;
}

[dir="rtl"] .platform-options {
    text-align: right;
}

[dir="rtl"] .platform-option {
    text-align: right;
}

[dir="rtl"] .service-option-group h3 {
    text-align: right;
}

[dir="rtl"] .edit-number-selector {
    text-align: right;
}

[dir="rtl"] .orientation-name {
    text-align: right;
}

[dir="rtl"] .orientation-description {
    text-align: right;
}