.homepage-only * {
    margin: 0 ;
    padding: 0 ;
    box-sizing: border-box ;
}

.homepage-only body {
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

/* Header */
.homepage-only .header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.homepage-only .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.homepage-only .nav-container nav {
    justify-self: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.homepage-only .logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.homepage-only .nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    color: white;
    font-size: 1.1rem;
}

.homepage-only .nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.homepage-only .nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.homepage-only .hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.homepage-only .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.homepage-only .hero-content {
    max-width: 810px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.homepage-only .hero h1 {
    line-height: 1.6;
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    color: white;
    font-weight: bold;

}

.homepage-only .hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: white;
    line-height: 1.6;
}

.homepage-only .cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.4s;
}

/* Features Section */
.homepage-only .features {
    padding: 100px 0;
    background: #f8fafc;
}

.homepage-only .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.homepage-only .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2d3748;
    font-weight: bold;
}

.homepage-only .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.homepage-only .feature-card {
    font-size: 1.5rem;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
}

.homepage-only .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.homepage-only .feature-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.homepage-only .feature-card:hover > .feature-icon {
    transform: scale(1.07) rotate(10deg);
    /*box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);*/
}

.homepage-only .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.2s ease;
}

.homepage-only .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: bold;
    line-height: 1.6;
}

.homepage-only .feature-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 1.0rem;
}

/* Services Section */
.homepage-only .services {
    padding: 100px 0;
    background: white;
}

.homepage-only .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.homepage-only .service-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.homepage-only .service-item:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.homepage-only .service-rate {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.homepage-only .service-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.homepage-only .service-desc {
    color: #718096;
    font-size: 0.9rem;
}

/* Testimonials Section */
.homepage-only .testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.homepage-only .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.homepage-only .testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.homepage-only .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

.homepage-only .testimonial-text {
    margin-bottom: 30px;
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.homepage-only .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.homepage-only .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.homepage-only .author-info h4 {
    color: #2d3748;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1rem;
}

.homepage-only .author-info p {
    color: #718096;
    font-size: 0.9rem;
}

/* CTA Section */
.homepage-only .cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.homepage-only .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: white;
    line-height: 1.6;
}

.homepage-only .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
    line-height: 1.6;
}

/* Footer */
.homepage-only .footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

.homepage-only .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 120px;
    margin-bottom: 40px;
}

.homepage-only .footer-section h3 {
    margin-bottom: 20px;
    color: #e2e8f0;
    font-weight: bold;
    line-height: 1.6;
    font-size: 1.17rem;
}

.homepage-only .footer-section p,
.homepage-only .footer-section a {
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    font-size: 1rem;
    line-height: 1.6;
}

.homepage-only .footer-section a:hover {
    color: #667eea;
}

.homepage-only .footer-bottom a:hover {
    color: #667eea;
}

.homepage-only .footer-bottom p {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .homepage-only .nav-links {
        display: none;
    }
    
   .homepage-only  .hero h1 {
        font-size: 2.5rem;
    }
    
    .homepage-only .hero p {
        font-size: 1.1rem;
    }
    
    .homepage-only .section-title {
        font-size: 2rem;
    }
    
    .homepage-only .features-grid,
    .homepage-only .services-grid,
    .homepage-only .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Elements */
.homepage-only .floating-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.homepage-only .floating-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}



.homepage-only .qixer-profile {
position: relative;
font-family: inherit;
}

.homepage-only .qixer-thumb {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
border-radius: 50px;
transition: background 0.2s;
cursor: pointer;
}

.homepage-only .qixer-thumb:hover {
background: rgba(255,255,255,0.1); /* profiles icon shadow */  
}

.homepage-only .qixer-thumb img {
width: 38px;
height: 38px;
border-radius: 50%;
object-fit: cover;
}

.homepage-only .qixer-thumb span {
color: white;
font-weight: 500;
}

.homepage-only .arrow {
border: solid white;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 4px;
transform: rotate(45deg);
transition: transform 0.2s;
}

.homepage-only .qixer-profile.show .arrow {
transform: rotate(-135deg);
}

.homepage-only .qixer-menu {
list-style: none;
margin: 0;
padding: 6px 0;
background: white; /* menu background */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
position: absolute;
right: 0;
min-width: 160px;
opacity: 0;
transform: translateY(10px);
pointer-events: none;
transition: opacity 0.3s ease, transform 0.3s ease;
z-index: 1000;
}

.homepage-only .qixer-profile.show .qixer-menu {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

.homepage-only .qixer-menu li a,
.homepage-only .qixer-menu li button {
display: block;
width: 100%;
padding: 10px 14px;
text-decoration: none;
color: #333;
background: none;
border: none;
font-size: 14px;
cursor: pointer;
transition: background 0.2s;
}

.homepage-only .qixer-menu li a:hover,
.homepage-only .qixer-menu li button:hover {
background: #eeeeee;
}


/* تحسين شكل الباقات */
.service-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 25px 15px;
border-radius: 16px;
min-height: 160px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
}


/* تأثير عند المرور */
.service-item:hover {
transform: translateY(-6px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* اسم الخدمة */
.service-item .service-name {
font-size: 20px;          /* أكبر */
font-weight: 700;         /* أعرض */
color: #333333;           /* رمادي داكن/أسود ناعم */
margin-bottom: 10px;
}

/* السعر */
.service-item .service-rate {
font-size: 24px;         /* أكبر */
font-weight: 700;
color: #8e44ad;          /* بنفسجي أنيق */
}


/* ألوان الخلفية حسب نوع الباقة */
.service-item.normal {
background-color: white; /* رمادي فاتح */
/*border-left: 5px solid #999;*/
color: #222;

}

.service-item.bronze {
background-color: #d8a676; /* برونزي هادئ */
color: #222;
}

.service-item.silver {
background-color: #dcdcdc; /* فضي ناعم */
color: #222;
}

.service-item.gold {
background-color: #ffe680; /* ذهبي فاتح */
color: #222;
}

.service-item .service-name {
font-size: 18px;
font-weight: 500;
color: #222;
}

