/* ============================================
   HOMEPAGE SPECIFIC STYLES
   ============================================ */

/* Intro Branding Section */
.homepage .intro-branding {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.homepage .intro-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 113, 185, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.homepage .intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.homepage .intro-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 50px rgba(10, 113, 185, 0.3);
    animation: float 3s ease-in-out infinite;
}

.homepage .intro-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.homepage .intro-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 25px;
}

.homepage .intro-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.homepage .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.homepage .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.homepage .btn-main {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(10, 113, 185, 0.3);
}

.homepage .btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 113, 185, 0.4);
}

.homepage .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.homepage .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Philosophy Section */
.homepage .philosophy {
    padding: 100px 0;
    background: white;
}

.homepage .philosophy-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.homepage .philosophy-visual {
    display: flex;
    justify-content: center;
}

.homepage .philosophy-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(10, 113, 185, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    position: relative;
}

.homepage .philosophy-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(10, 113, 185, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.homepage .philosophy-text .section-badge {
    margin-bottom: 15px;
}

.homepage .philosophy-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.homepage .meta-badge {
    background: linear-gradient(135deg, rgba(10, 113, 185, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.homepage .separator {
    color: var(--light-gray);
}

.homepage .philosophy-large {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 15px;
}

.homepage .philosophy-text > p:last-child {
    color: var(--gray);
    line-height: 1.8;
}

/* About Section */
.homepage .about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5f3 100%);
}

.homepage .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.homepage .about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.homepage .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage .about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid var(--primary);
    border-radius: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.homepage .about-image:hover::before {
    opacity: 1;
    inset: 10px;
}

.homepage .about-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark);
    margin: 15px 0 20px;
    line-height: 1.3;
}

.homepage .about-content > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.homepage .about-focus-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary);
}

[dir="rtl"] .homepage .about-focus-box {
    border-left: none;
    border-right: 4px solid var(--primary);
}

.homepage .focus-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--dark);
}

.homepage .focus-title i {
    font-size: 1.5rem;
    color: var(--primary);
}

.homepage .focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.homepage .focus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.homepage .focus-list li i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Trust Section */
.homepage .trust {
    padding: 100px 0;
    background: white;
}

.homepage .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.homepage .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.homepage .trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 113, 185, 0.12);
    border-color: rgba(10, 113, 185, 0.2);
}

.homepage .trust-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.homepage .trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.homepage .trust-item p {
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Strengths Section */
.homepage .strengths {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a71b9 0%, #00a896 100%);
    position: relative;
    overflow: hidden;
}

.homepage .strengths::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.homepage .strengths .section-header {
    position: relative;
}

.homepage .strengths .section-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.homepage .strengths .section-header h2 {
    color: white;
}

.homepage .strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
}

.homepage .strength-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.homepage .strength-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.homepage .strength-visual {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.homepage .card-blue { background: linear-gradient(135deg, #0a71b9, #088395); }
.homepage .card-teal { background: linear-gradient(135deg, #00a896, #00d4aa); }
.homepage .card-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.homepage .card-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.homepage .strength-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.homepage .strength-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Business Areas Section */
.homepage .business-areas {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Highlights Section */
.homepage .highlights {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.homepage .highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.homepage .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    position: relative;
}

.homepage .highlight-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.homepage .highlight-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-8px);
}

.homepage .highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.homepage .highlight-numberr {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.homepage .highlight-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Quality Section */
.homepage .quality {
    padding: 100px 0;
    background: white;
}

.homepage .quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.homepage .quality-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(10, 113, 185, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.homepage .quality-item:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(10, 113, 185, 0.1);
    border-color: rgba(10, 113, 185, 0.2);
    transform: translateX(5px);
}

[dir="rtl"] .homepage .quality-item:hover {
    transform: translateX(-5px);
}

.homepage .quality-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.homepage .quality-item span {
    color: var(--dark);
    font-weight: 500;
}

/* Partners Section */
.homepage .partners-section {
    padding: 100px 0;
    position: relative;
}

.homepage .partners-bg {
    filter: blur(8px) !important;
}

.homepage .partners-overlay {
    background: rgba(255,255,255,0.85) !important;
}

.homepage .partners-carousel {
    position: relative;
    padding: 20px 0;
}

.homepage .carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.homepage .partner-card {
    min-width: 220px;
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.homepage .partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 113, 185, 0.15);
}

.homepage .partner-card img {
    height: 60px;
    object-fit: contain;
    max-width: 150px;
}

.homepage .partner-card span {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
}

.homepage .btn-visit {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.homepage .btn-visit:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(10, 113, 185, 0.3);
}

.homepage .carousel-prev, .homepage .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.homepage .carousel-prev:hover, .homepage .carousel-next:hover {
    background: var(--primary);
    color: white;
}

.homepage .carousel-prev { left: -25px; }
.homepage .carousel-next { right: -25px; }

.homepage .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.homepage .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.homepage .carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.dist-info {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.dist-main {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.dist-info p {
    color: var(--gray);
    line-height: 1.7;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

#map {
    height: 500px;
}

.legend {
    background: white;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid var(--light-gray);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark);
}

/* Partner CTA Section */
.homepage .partner-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.homepage .partner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 0%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.homepage .partner-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    position: relative;
}

.homepage .cta-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    backdrop-filter: blur(10px);
}

.homepage .partner-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.homepage .partner-cta-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
}

.homepage .partner-offer-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.homepage .partner-offer-box h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.homepage .partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    text-align: left;
}

[dir="rtl"] .homepage .partner-benefits {
    text-align: right;
}

.homepage .partner-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.homepage .partner-benefits li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.homepage .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.homepage .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Products Section */
.homepage .products-section {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.homepage .products-showcase {
    padding: 0 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.homepage .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.homepage .product-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.homepage .product-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(10, 113, 185, 0.15);
}

.homepage .product-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.homepage .product-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(5px);
}

.homepage .product-details {
    padding: 25px;
}

.homepage .product-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10, 113, 185, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.homepage .product-details h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.homepage .product-details p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.homepage .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.homepage .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(10, 113, 185, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.homepage .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 15px;
}

.homepage .section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.homepage .section-subtitle-bold {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .homepage .philosophy-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .homepage .philosophy-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .homepage .about-grid {
        grid-template-columns: 1fr;
    }
    
    .homepage .about-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .homepage .prev, .homepage .next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .homepage .prev { left: 15px; }
    .homepage .next { right: 15px; }
    
    .homepage .intro-branding,
    .homepage .philosophy,
    .homepage .about,
    .homepage .trust,
    .homepage .strengths,
    .homepage .highlights,
    .homepage .quality,
    .homepage .partners-section,
    .homepage .map-section,
    .homepage .partner-cta,
    .homepage .products-showcase {
        padding: 70px 0;
    }
    
    .homepage .intro-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .homepage .cta-buttons {
        flex-direction: column;
    }
    
    .homepage .btn {
        width: 100%;
        justify-content: center;
    }
    
    .homepage .philosophy-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .homepage .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .homepage .trust-item {
        flex-direction: column;
        text-align: center;
    }
    
    .homepage .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .homepage .legend {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .homepage .carousel-prev { left: 0; }
    .homepage .carousel-next { right: 0; }
}

@media (max-width: 480px) {
    .homepage .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .homepage .highlight-numberr {
        font-size: 2.5rem;
    }
    
    .homepage .products-grid {
        grid-template-columns: 1fr;
    }
}