/* ===================================
   Coast Side - Luxury Landing Page
   Design System: White (#FFFFFF) + Pink Accent (#FF0062)
   Style: Minimalist, Sharp Corners, High-End
   =================================== */

/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #FFFFFF;
    --accent-pink: #FF0062;
    --bg-white: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-lighter: #FAFAFA;
    --text-black: #000000;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --border-color: #E5E5E5;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-black);
    line-height: 1.6;
}

/* Arabic Font - Moved to arabic-font.css */

/* ===================================
   Loading Screen - Rocket Animation
   =================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: absolute;
    top: 50%;
    margin-left: -50px;
    left: 50%;
    animation: speeder 0.4s linear infinite;
}

.loader > span {
    height: 5px;
    width: 35px;
    background: #FF0062;
    position: absolute;
    top: -19px;
    left: 60px;
    border-radius: 2px 10px 1px 0;
}

.base span {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 100px solid #FF0062;
    border-bottom: 6px solid transparent;
}

.base span:before {
    content: "";
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #FF0062;
    position: absolute;
    right: -110px;
    top: -16px;
}

.base span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 55px solid #FF0062;
    border-bottom: 16px solid transparent;
    top: -16px;
    right: -98px;
}

.face {
    position: absolute;
    height: 12px;
    width: 20px;
    background: #FF0062;
    border-radius: 20px 20px 0 0;
    transform: rotate(-40deg);
    right: -125px;
    top: -15px;
}

.face:after {
    content: "";
    height: 12px;
    width: 12px;
    background: #FF0062;
    right: 4px;
    top: 7px;
    position: absolute;
    transform: rotate(40deg);
    transform-origin: 50% 50%;
    border-radius: 0 0 0 2px;
}

.loader > span > span:nth-child(1),
.loader > span > span:nth-child(2),
.loader > span > span:nth-child(3),
.loader > span > span:nth-child(4) {
    width: 30px;
    height: 1px;
    background: #FF0062;
    position: absolute;
    animation: fazer1 0.2s linear infinite;
}

.loader > span > span:nth-child(2) {
    top: 3px;
    animation: fazer2 0.4s linear infinite;
}

.loader > span > span:nth-child(3) {
    top: 1px;
    animation: fazer3 0.4s linear infinite;
    animation-delay: -1s;
}

.loader > span > span:nth-child(4) {
    top: 4px;
    animation: fazer4 1s linear infinite;
    animation-delay: -1s;
}

@keyframes fazer1 {
    0% {
        left: 0;
    }
    100% {
        left: -80px;
        opacity: 0;
    }
}

@keyframes fazer2 {
    0% {
        left: 0;
    }
    100% {
        left: -100px;
        opacity: 0;
    }
}

@keyframes fazer3 {
    0% {
        left: 0;
    }
    100% {
        left: -50px;
        opacity: 0;
    }
}

@keyframes fazer4 {
    0% {
        left: 0;
    }
    100% {
        left: -150px;
        opacity: 0;
    }
}

@keyframes speeder {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -3px) rotate(-1deg);
    }
    20% {
        transform: translate(-2px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 3px) rotate(-1deg);
    }
    60% {
        transform: translate(-1px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-2px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(2px, 1px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.longfazers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.longfazers span {
    position: absolute;
    height: 2px;
    width: 20%;
    background: #FF0062;
}

.longfazers span:nth-child(1) {
    top: 20%;
    animation: lf 0.6s linear infinite;
    animation-delay: -5s;
}

.longfazers span:nth-child(2) {
    top: 40%;
    animation: lf2 0.8s linear infinite;
    animation-delay: -1s;
}

.longfazers span:nth-child(3) {
    top: 60%;
    animation: lf3 0.6s linear infinite;
}

.longfazers span:nth-child(4) {
    top: 80%;
    animation: lf4 0.5s linear infinite;
    animation-delay: -3s;
}

@keyframes lf {
    0% {
        left: 200%;
    }
    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf2 {
    0% {
        left: 200%;
    }
    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf3 {
    0% {
        left: 200%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf4 {
    0% {
        left: 200%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

/* ===================================
   Custom Scrollbar
   =================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #66666600;
}


::-webkit-scrollbar-thumb {
border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    animation-duration: 1.5s;
}

::-webkit-scrollbar-thumb:active {
    background: var(--accent-pink);
    animation: none;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ff0062 #66666600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition-speed) ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-black);
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
}

.nav-link.active {
    color: rgb(0, 0, 0);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.185);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgb(0, 0, 0) 50%, transparent 100%);
    animation: navLinkGlow 0.3s ease;
}

@keyframes navLinkGlow {
    0% {
        width: 0%;
        left: 50%;
    }
    100% {
        width: 100%;
        left: 0%;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--accent-pink);
    color: var(--primary-white);
    border-radius: 0.8vh;
    font-size: 14px;
    font-weight: 400;
    border: none;
    cursor: pointer;
}

.btn-discord:hover {
    background-color: #E6005A;
    transform: translateY(-2px);
}

.btn-design {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 0.6vh;
    background-color: #fffefe;
    color: #ff0062;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-design:hover {
    background-color: transparent;
    color: var(--text-black);
    border-color: var(--accent-pink);
    transform: translateY(-2px);
}

.language-toggle {
    width: 44px;
    height: 44px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.language-toggle:hover {
    background-color: var(--bg-lighter);
    border-color: var(--accent-pink);
}

.lang-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-black);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--text-black);
    transition: all var(--transition-speed) ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: -1;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    z-index: 1;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 0, 98, 0.6) 75%, rgba(255, 0, 98, 0.8) 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.line:nth-child(1) {
    margin-left: -37.5%;
}

.line:nth-child(1)::after {
    animation-delay: 0s;
}

.line:nth-child(2) {
    margin-left: -12.5%;
}

.line:nth-child(2)::after {
    animation-delay: 1.5s;
}

.line:nth-child(3) {
    margin-left: 12.5%;
}

.line:nth-child(3)::after {
    animation-delay: 3s;
}

.line:nth-child(4) {
    margin-left: 37.5%;
}

.line:nth-child(4)::after {
    animation-delay: 4.5s;
}

@keyframes drop {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 2;
}

/* ===================================
   V9 Video Section
   =================================== */
.v9-video-section {
    width: 95%;
    padding: 0;
    margin: 60px auto 0;
    overflow: hidden;
    background: #000000;
    border-radius: 4vh;
}

.v9-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: -100px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-black);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink) 0%, rgba(255, 0, 98, 0.3) 100%);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 0, 98, 0.1) 0%, transparent 100%);
}

.section-titlev8 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
     background: -webkit-linear-gradient(#b80037, #ff004c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.v8-showcase {
    padding: 32px;
}

.v8-gallery {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--bg-light);
    border-radius: 1vh;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.slide-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #E5E5E5;
}

.slide-info p {
    font-size: 14px;
    color: var(--text-gray);
}

.gallery-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.indicator {
    width: 40px;
    height: 3px;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.indicator.active {
    background-color: var(--accent-pink);
}

.clients-section {
    padding: 0;
    margin: -60px 0 0 0;
}

.clients-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: -webkit-linear-gradient(#ffffff, #bbbaba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}


.clients-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0vh;
}

.clients-nav {
    background: var(--accent-pink);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.clients-nav:hover {
    background: #d10054;
    transform: scale(1.1);
}




.site-description {
    margin-top: 12px;
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 4vh;
}

.description-text {
    font-size: 15px;
    line-height: 1.9;
    color: #aaaaaa;
    text-align: center;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-left: 200px;
}

.logo-container {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    perspective: 1000px;
}

.main-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 15px 40px rgba(255, 0, 98, 0.4));
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0.45;
}

.main-logo:hover {
    filter: drop-shadow(0 15px 40px rgba(255, 0, 98, 0.4));
    opacity: 0.8;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -1.5px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #b80037 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    position: relative;
    line-height: 1.2;
    margin: 0 0 28px 0;
}

.hero-title .highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FF0062 0%, #ff1a75 50%, #FF0062 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    text-decoration: underline;
    text-decoration-color: rgba(255, 0, 98, 0.25);
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-align: center;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 0 52px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-v8-logo {
    margin-top: 60px;
    text-align: center;
}

.hero-v8-logo img {
    max-width: 200px;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 98, 0.2));
}

.hero-v8-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(255, 0, 98, 0.3));
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-pink);
    color: white;
    border-color: var(--accent-pink);
}

.btn-primary:hover {
    background: #d6004a;
    border-color: #d6004a;
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-black);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-lighter);
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: scale(1.1);
}

.hero-tagline {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.4;
    margin: 0 0 40px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 0 56px 0;
    padding: 0 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    width: 100%;
    max-width: 900px;
    margin-top: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.1) 0%, rgba(184, 0, 55, 0.05) 100%);
    border-radius: 50%;
    color: var(--accent-pink);
    transition: all 0.4s ease;
}

.stat-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.feature-item {
    padding: 20px 40px;
    background: rgba(255, 0, 98, 0.05);
    border: 2px solid var(--accent-pink);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 0, 98, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 0, 98, 0.2);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: 120px 0;
   background: linear-gradient(180deg,rgb(243, 242, 242) 10%, rgb(255, 255, 255) 69%);

    border-radius: 8vh;

}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.product-card {
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border-radius: 1vh;
    padding: 2vh;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/test4.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}



.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: var(--bg-lighter);
    overflow: hidden;
    border-radius: 1.5vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-speed) ease;
}

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

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-img.active {
    opacity: 1;
    position: relative;
}

.product-content {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.product-indicators {
    display: flex;
    gap: 6px;
    align-items: center;
}

.product-dot {
    width: 10px;
    height: 5px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-dot.active {
    background-color: var(--accent-pink);
    width: 10px;
    height: 5px;
}

.product-dot:hover {
    background-color: #ff6b9d;
}

.product-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-qbcore {
    background-color: #ffc9d9;
    color: #d63384;
}

.badge-esx {
    background-color: #c3f4e8;
    color: #0d9488;
}

.badge-standalone {
    background-color: #d1e7ff;
    color: #0066cc;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-pink);
}

.product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-view {
    padding: 10px 24px;
    background-color: transparent;
    color: var(--accent-pink);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--accent-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--accent-pink);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.btn-buy {
    padding: 10px 24px;
    background-color: var(--accent-pink);
    color: var(--primary-white);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--accent-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: #E6005A;
    transform: translateX(4px);
}

/* ===================================
   About Section - Redesigned
   =================================== */
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-pink);
    margin: 12px 0 20px;
    letter-spacing: 0.5px;
}

.about-brief {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #ff33663a 50%, #ff006200 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 0, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 0, 98, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    color: #FFFFFF;
}

.service-card:hover .service-title {
    color: #fff;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-pink);
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.1) 0%, rgba(255, 0, 98, 0.05) 100%);
    border-radius: 16px;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 14px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* Clients Showcase */
.clients-showcase {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2vh;
    position: relative;
    overflow: hidden;
    background-image: url('../image/mazen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.clients-showcase > * {
    position: relative;
    z-index: 1;
}



.clients-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #fff transparent;
}

.clients-scroll::-webkit-scrollbar {
    height: 6px;
}

.clients-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.clients-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-pink);
    border-radius: 3px;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    min-width: 130px;
    max-width: 110px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.client-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 0, 98, 0.5);
    box-shadow: 0 8px 20px rgba(255, 0, 98, 0.2);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    border: 3px solid rgba(238, 237, 237, 0.6);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(255, 0, 98, 0.2);
}

.client-name {
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us-section {
    padding: 120px 0;
    background: #FAFAFA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    padding: 44px 32px;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.feature-card:nth-child(1)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23FF0062' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='16 18 22 12 16 6'%3E%3C/polyline%3E%3Cpolyline points='8 6 2 12 8 18'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-card:nth-child(2)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23FF0062' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-card:nth-child(3)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23FF0062' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-card:nth-child(4)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23FF0062' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-card:nth-child(5)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23FF0062' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'%3E%3C/path%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'%3E%3C/polyline%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-card:nth-child(6)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23FF0062' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover .feature-icon {
    background: var(--accent-pink);
    color: #FFFFFF;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-pink);
    background: rgba(255, 0, 98, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 98, 0.08);
    border-radius: 12px;
    color: var(--accent-pink);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-black);
}

.feature-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

.feature-glow {
    display: none;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    border-top: 1px solid #E8E8E8;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff004c 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    color: #888888;
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 98, 0.08);
    border-radius: 10px;
    color: var(--accent-pink);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-pink);
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 0, 98, 0.3);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list a {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--accent-pink);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding: 32px 0;
    border-radius: 2vh 2vh 0 0;
    background-image: url('../image/mazen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}


.copyright {
    font-size: 17px;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* ===================================
   RTL Support (Arabic)
   =================================== */
[dir="rtl"] {
    direction: rtl;
}

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

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

[dir="rtl"] .hero-container {
    direction: rtl;
}

[dir="rtl"] .about-content {
    direction: rtl;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .btn-buy:hover {
    transform: translateX(-4px);
}

/* ===================================
   Responsive Design
   =================================== */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-container {
        gap: 60px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        gap: 24px;
        transition: left var(--transition-speed) ease;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-black);
        font-size: 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }
    
    .hero-right {
        order: -1;
        margin-left: 0;
    }
    
    .hero-left {
        gap: 30px;
    }
    
    .logo-container {
        width: 300px;
        height: 300px;
    }
    
    .v8-showcase {
        padding: 24px;
    }
    
    .v8-gallery {
        height: 350px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-intro {
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .clients-showcase {
        padding: 30px 20px;
    }
    
    .clients-scroll {
        gap: 12px;
    }
    
    .client-item {
        min-width: 90px;
        padding: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-left {
        gap: 8px;
    }
    
    .btn-discord {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .btn-design {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .logo-image {
        max-height: 35px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .highlight-text {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin: 0 0 40px 0;
    }
    
    .hero-cta {
        gap: 16px;
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-v8-logo {
        margin-top: 40px;
    }
    
    .hero-v8-logo img {
        max-width: 150px;
    }
    
    .lines {
        width: 95vw;
    }
    
    .section-title {
        font-size: 32px;
        padding-bottom: 16px;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .v8-gallery {
        height: 300px;
    }
    
    .products-section {
        padding: 80px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo-image {
        max-height: 28px;
    }
    
    .btn-discord {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .btn-discord svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-design {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .btn-design svg {
        width: 14px;
        height: 14px;
    }
    
    .language-toggle {
        width: 36px;
        height: 36px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 0;
        margin: 0 0 20px 0;
    }
    
    .hero-title .highlight-text {
        font-size: 28px;
        text-underline-offset: 6px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin: 0 0 32px 0;
        max-width: 100%;
    }
    
    .hero-cta {
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }
    
    .hero-v8-logo {
        margin-top: 32px;
    }
    
    .hero-v8-logo img {
        max-width: 120px;
    }
    
    .lines {
        width: 100%;
    }
    
    .line::after {
        height: 10vh;
    }
    
    .section-title {
        font-size: 28px;
        padding-bottom: 14px;
    }
    
    .section-title::after {
        width: 45px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .v8-showcase {
        padding: 16px;
    }
    
    .v8-gallery {
        height: 220px;
    }
    
    .logo-container {
        width: 180px;
        height: 180px;
    }
    
    .main-logo {
        opacity: 0.9;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-tagline {
        font-size: 16px;
    }
    
    .about-brief {
        font-size: 15px;
    }
    
    .services-grid {
        gap: 16px;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-desc {
        font-size: 13px;
    }
    
    .clients-showcase {
        padding: 24px 16px;
    }
    
    .clients-title {
        font-size: 18px;
    }
    
    .clients-scroll {
        gap: 10px;
    }
    
    .client-item {
        min-width: 80px;
        padding: 10px;
    }
    
    .client-avatar {
        width: 45px;
        height: 45px;
    }
    
    .client-name {
        font-size: 12px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .client-card {
        padding: 12px;
    }
    
    .product-card {
        padding: 16px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 16px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .footer {
        padding: 60px 0 24px;
    }
}

/* ===================================
   Rules Page Styles
   =================================== */
.rules-last-updated {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.rules-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.rules-intro {
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.05) 0%, rgba(255, 0, 98, 0.02) 100%);
    padding: 24px 28px;
    border-radius: 12px;
    margin-bottom: 48px;
    line-height: 1.8;
}

.rules-intro p {
    margin: 0;
    color: var(--text-black);
    font-size: 16px;
}

.rules-category {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rules-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.rules-category-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--accent-pink);
    display: inline-block;
}

.rules-category-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 16px 20px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-black);
    transition: all 0.3s ease;
}

.rules-list li:hover {
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.08) 0%, rgba(255, 0, 98, 0.04) 100%);
    transform: translateX(8px);
    border-left-width: 6px;
}

/* RTL Support for Rules */
html[lang="ar"] .rules-category {
    border-right: none;
}

html[lang="ar"] .rules-intro {
    border-left: none;
}

html[lang="ar"] .rules-list li {
    border-left: none;
}

html[lang="ar"] .rules-list li:hover {
    transform: translateX(-8px);
    border-right-width: 6px;
}

/* Responsive Rules Page */
@media (max-width: 768px) {
    .rules-section {
        padding: 60px 0;
    }
    
    .rules-category {
        padding: 24px 20px;
        margin-bottom: 24px;
    }
    
    .rules-category-title {
        font-size: 22px;
    }
    
    .rules-list li {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .rules-intro {
        padding: 20px 20px;
    }
}
