/* Corian Castle Website - Main Stylesheet */
/* إصدار محدث ومُصحح - يناير 2025 */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: #fff;
    background-color: #000000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Navigation - إصدار مُصحح */
.navbar {
    background: rgba(13, 13, 17, 0.98) !important;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(245, 196, 81, 0.3);
    border-bottom: 1px solid rgba(245, 196, 81, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5C451, #E5B140);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 14px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F5C451 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #F5C451 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-link:hover {
    color: #fff !important;
}

.contact-btn {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-btn:hover {
    background: #20bc5a;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #F5C451 !important;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    overflow: hidden;
}

/* خلفية ثابتة بإضاءة خفيفة */
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), 
                url('/assets/images/مغسلة كوريان.jpg') center/cover no-repeat;
    z-index: 1;
}

/* محتوى الهيرو */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

/* عنوان الهيرو */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F5C451;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* العنوان الفرعي */
.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* انيميشن الظهور */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 196, 81, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #F7CC5F, #EFBD4C);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 196, 81, 0.4);
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #F5C451;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f4b942, #e6a635);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F5C451;
    font-weight: 600;
}

.feature-item i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 196, 81, 0.3);
    background: linear-gradient(135deg, #F7CC5F, #EFBD4C);
}
/* Services Section - Creative Bento Grid Layout */
.services-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F5C451, #E5B140);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Bento Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Card Sizes */
.service-card:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
}

.service-card:nth-child(2) {
    grid-column: span 3;
    grid-row: span 1;
}

.service-card:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.service-card:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
}

/* Service Card Style */
.service-card {
    background: #0f0f0f;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(245, 196, 81, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(245, 196, 81, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: scale(1.02);
    border-color: rgba(245, 196, 81, 0.3);
    box-shadow: 0 20px 40px rgba(245, 196, 81, 0.2);
}

/* Service Image */
.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(1.0);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(1.0);
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%);
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #F5C451;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-content h3 {
    transform: translateY(0);
}

.service-content p {
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.service-card:hover .service-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Service Link */
.service-links {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.service-card:hover .service-links {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: rgba(245, 196, 81, 0.2);
    border: 1px solid #F5C451;
    border-radius: 20px;
    color: #F5C451;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #F5C451;
    color: #000;
    transform: translateX(-5px);
}

/* Service Number Badge */
.service-card::after {
    content: '0' counter(service);
    counter-increment: service;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(245, 196, 81, 0.1);
    border: 1px solid rgba(245, 196, 81, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #F5C451;
    font-size: 14px;
    z-index: 3;
}

.services-grid {
    counter-reset: service;
}

/* Navigation */
.section-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.nav-btn {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    color: #F5C451;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }
    
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 15px;
    }
    
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .section-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

/* Entrance Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-card {
    animation: fadeInScale 0.5s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
/* Blog Section - Modern Creative Design */
.blog-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.blog-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 196, 81, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Section Header */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Preview - Main Container */
.blog-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Blog Content Side */
.blog-content {
    position: relative;
}

.blog-content h3 {
    font-size: 2rem;
    color: #F5C451;
    margin-bottom: 30px;
    position: relative;
    padding-right: 40px;
}

.blog-content h3::before {
    content: '📝';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    animation: writing 2s ease-in-out infinite;
}

@keyframes writing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Blog Topics List */
.blog-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.blog-topics li {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border: 1px solid rgba(245, 196, 81, 0.1);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 15px;
    color: #ccc;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.blog-topics li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 196, 81, 0.1), transparent);
    transition: left 0.5s ease;
}

.blog-topics li:hover::before {
    left: 100%;
}

.blog-topics li:hover {
    transform: translateX(-10px);
    border-color: rgba(245, 196, 81, 0.3);
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
}

.blog-topics li i {
    color: #F5C451;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.blog-topics li:hover i {
    transform: scale(1.3) rotate(360deg);
}

/* Blog Icon Side - Creative Visual */
.blog-icon {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Cards Animation */
.blog-cards-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(245, 196, 81, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
    border-color: #F5C451;
    box-shadow: 0 15px 40px rgba(245, 196, 81, 0.2);
}

.floating-card:nth-child(1) {
    width: 200px;
    height: 140px;
    top: 20%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    width: 180px;
    height: 120px;
    top: 50%;
    right: 15%;
    animation: float2 8s ease-in-out infinite;
}

.floating-card:nth-child(3) {
    width: 220px;
    height: 150px;
    bottom: 20%;
    left: 25%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

.floating-card .card-icon {
    font-size: 2rem;
    color: #F5C451;
    margin-bottom: 10px;
}

.floating-card .card-title {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.floating-card .card-text {
    color: #666;
    font-size: 0.8rem;
}

/* Center Icon */
.blog-main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F5C451, #E5B140);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    box-shadow: 0 20px 40px rgba(245, 196, 81, 0.3);
    animation: rotateIcon 10s linear infinite;
}

@keyframes rotateIcon {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Blog CTA Button */
.btn-blog {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-blog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-blog:hover::before {
    width: 300px;
    height: 300px;
}

.btn-blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 196, 81, 0.4);
}

.btn-blog i {
    font-size: 1.2rem;
}

/* Stats Counter */
.blog-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 196, 81, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #F5C451;
    display: block;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-preview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-icon {
        height: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    .blog-main-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-content h3 {
        font-size: 1.5rem;
    }
    
    .blog-topics li {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .blog-stats {
        justify-content: space-around;
    }
}

/* Portfolio Section - Enhanced Creative Design مع ضبط حجم الصور */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(245, 196, 81, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(245, 196, 81, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.portfolio-title-wrapper {
    position: relative;
    display: inline-block;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5C451, transparent);
}

.title-decoration i {
    color: #F5C451;
    font-size: 1.2rem;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(245, 196, 81, 0.3);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 196, 81, 0.2), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 196, 81, 0.3);
    border-color: rgba(245, 196, 81, 0.6);
}

.filter-btn.active {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000;
    border-color: #F5C451;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 196, 81, 0.4);
}

.filter-icon {
    font-size: 16px;
}

.filter-text {
    font-weight: 600;
}

.filter-count {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.filter-btn.active .filter-count {
    background: rgba(0, 0, 0, 0.3);
    color: #000;
}

/* Portfolio Masonry Grid - مُصحح لضبط حجم الصور */
.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 280px; /* ارتفاع ثابت لكل العناصر */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Portfolio Item Variations - مُحدث لضبط الأحجام */
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(245, 196, 81, 0.1);
    height: 280px; /* ارتفاع ثابت للعناصر العادية */
}

.portfolio-item.featured {
    grid-row: span 2;
    height: 580px; /* ضعف الارتفاع بالضبط */
}

.portfolio-item.wide {
    grid-column: span 2;
    height: 280px; /* نفس الارتفاع للعريضة */
}

.portfolio-item.tall {
    grid-row: span 2;
    height: 580px; /* ضعف الارتفاع بالضبط */
}

/* Portfolio Image - مُصحح لضبط الصور */
.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* الإصلاح الأساسي: ضبط حجم الصور */
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* يضمن نسبة الأبعاد الصحيحة */
    object-position: center; /* توسيط الصورة */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.9);
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05); /* تصغير التكبير لمنع الفيض */
    filter: brightness(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(245, 196, 81, 0.2) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .image-overlay {
    opacity: 1;
}

/* Overlay Content */
.overlay-content {
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    color: #F5C451;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Project Tags */
.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(245, 196, 81, 0.2);
    color: #F5C451;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(245, 196, 81, 0.3);
    backdrop-filter: blur(10px);
}

/* View Button */
.view-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(245, 196, 81, 0.9);
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: scale(0);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .view-btn {
    transform: scale(1);
}

.view-btn:hover {
    background: #F5C451;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(245, 196, 81, 0.4);
}

/* Hidden Items */
.portfolio-item.hidden-item {
    display: none;
}

.portfolio-item.hidden-item.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

/* Portfolio Actions */
.portfolio-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.load-more-btn,
.load-less-btn {
    background: linear-gradient(135deg, rgba(245, 196, 81, 0.1), rgba(245, 196, 81, 0.05));
    border: 2px solid rgba(245, 196, 81, 0.3);
    color: #F5C451;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn::before,
.load-less-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 196, 81, 0.2), transparent);
    transition: left 0.6s ease;
}

.load-more-btn:hover::before,
.load-less-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover,
.load-less-btn:hover {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 196, 81, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.load-count {
    background: rgba(245, 196, 81, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 5px;
}

.load-more-btn:hover .load-count,
.load-less-btn:hover .load-count {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

.hidden {
    display: none !important;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(245, 196, 81, 0.1), rgba(245, 196, 81, 0.05));
    padding: 50px 30px;
    border-radius: 25px;
    margin-top: 60px;
    border: 1px solid rgba(245, 196, 81, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: #F5C451;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Responsive Design - مُحدث لضبط الأحجام */
@media (max-width: 1024px) {
    .portfolio-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-auto-rows: 250px;
        gap: 15px;
    }
    
    .portfolio-item {
        height: 250px !important;
    }
    
    .portfolio-item.featured,
    .portfolio-item.tall {
        grid-row: span 2;
        height: 520px !important;
    }
    
    .portfolio-item.wide {
        grid-column: span 1;
        height: 250px !important;
    }
}

@media (max-width: 768px) {
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .filter-icon {
        display: none;
    }
    
    .filter-count {
        display: none;
    }
    
    .portfolio-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .portfolio-item,
    .portfolio-item.featured,
    .portfolio-item.wide,
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px !important;
    }
    
    .portfolio-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-masonry {
        grid-auto-rows: 180px;
    }
    
    .portfolio-item,
    .portfolio-item.featured,
    .portfolio-item.wide,
    .portfolio-item.tall {
        height: 180px !important;
    }
    
    .portfolio-header {
        margin-bottom: 40px;
    }
    
    .title-decoration {
        margin: 15px 0;
    }
    
    .decoration-line {
        width: 30px;
    }
    
    .load-more-btn,
    .load-less-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .portfolio-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}
/* Testimonials Section - Creative Media Gallery */
.testimonials-section {
    padding: 80px 0;
    background: #000;
    position: relative;
}

/* Header */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Container */
.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Masonry Grid للفيديوهات والصور */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* Testimonial Card - يدعم فيديو وصور */
.testimonial-card {
    background: #0f0f0f;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 196, 81, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 196, 81, 0.2);
}

/* نوع المحتوى */
.testimonial-card[data-type="video"] {
    grid-row: span 2;
}

.testimonial-card[data-type="whatsapp"] {
    background: #0b1014;
}

/* Media Container */
.testimonial-media {
    position: relative;
    width: 100%;
    min-height: 250px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WhatsApp Screenshot Style */
.whatsapp-screenshot {
    width: 100%;
    padding: 20px;
    background: #0b1014;
    min-height: 300px;
}

.whatsapp-message {
    background: #1f2c34;
    padding: 10px 15px;
    border-radius: 7px;
    margin-bottom: 8px;
    color: #e9edef;
    font-size: 14px;
    position: relative;
    max-width: 85%;
}

.whatsapp-message.sent {
    background: #005c4b;
    margin-left: auto;
}

.whatsapp-message .time {
    font-size: 11px;
    color: #8696a0;
    margin-top: 3px;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #202c33;
    margin: -20px -20px 15px -20px;
}

.whatsapp-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F5C451;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.whatsapp-name {
    color: #e9edef;
    font-weight: 500;
}

/* Video Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(245, 196, 81, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn:hover {
    background: #F5C451;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    color: #000;
    font-size: 24px;
    margin-left: 4px;
}

/* Instagram Style Card */
.instagram-post {
    background: #000;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #1a1a1a;
}

.instagram-header img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.instagram-header .username {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.instagram-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.instagram-actions {
    padding: 12px;
    display: flex;
    gap: 15px;
    color: #fff;
    font-size: 20px;
}

.instagram-actions i {
    cursor: pointer;
    transition: transform 0.2s;
}

.instagram-actions i:hover {
    transform: scale(1.2);
}

.instagram-likes {
    padding: 0 12px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Info Overlay */
.testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-info {
    transform: translateY(0);
}

.testimonial-info h4 {
    color: #F5C451;
    margin-bottom: 5px;
    font-size: 16px;
}

.testimonial-info p {
    font-size: 13px;
    color: #ccc;
}

/* Stars Rating */
.stars {
    color: #F5C451;
    margin-bottom: 10px;
}

/* نوع Platform Badge */
.platform-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.platform-badge i {
    font-size: 14px;
}

.platform-badge.whatsapp {
    background: #25d366;
    color: #fff;
}

.platform-badge.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.platform-badge.google {
    background: #4285f4;
    color: #fff;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #F5C451;
    color: #F5C451;
    padding: 12px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #F5C451;
    color: #000;
    transform: translateY(-2px);
}

/* CTA Buttons */
.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(245, 196, 81, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 12px 30px;
    border: 2px solid #F5C451;
    background: transparent;
    color: #F5C451;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #F5C451;
    color: #000;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
}

/* Lightbox Modal */
.testimonial-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.testimonial-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img,
.lightbox-content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card[data-type="video"] {
        grid-row: span 1;
    }
}

/* Partners Section - Modern Professional Design */
.partners-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.partners-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 196, 81, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 196, 81, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Partnership Benefits */
.partnership-benefits {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.partnership-benefits h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #F5C451;
    font-weight: 500;
}

.partnership-benefits > p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 50px;
}

/* Benefits Grid - Cards Style */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(245, 196, 81, 0.1);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F5C451, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 196, 81, 0.3);
    box-shadow: 0 20px 40px rgba(245, 196, 81, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F5C451, #E5B140);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #000;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotateY(180deg);
    border-radius: 50%;
}

.benefit-item h4 {
    margin-bottom: 15px;
    color: #F5C451;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item p {
    color: #bbb;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Partner Tools Section */
.partner-tools {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.partner-tools h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #F5C451;
    font-weight: 500;
}

.partner-tools > p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 50px;
}

/* Tools Grid - Modern Cards */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tool-card {
    background: #0a0a0a;
    border: 1px solid rgba(245, 196, 81, 0.15);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tool-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(245, 196, 81, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.tool-card:hover::after {
    animation: shimmer 0.5s ease;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateY(-100%); }
    100% { transform: rotate(45deg) translateY(100%); }
}

.tool-card.active {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-color: rgba(245, 196, 81, 0.3);
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 196, 81, 0.2);
    border-color: #F5C451;
}

.tool-card.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.tool-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 196, 81, 0.1);
    border: 2px solid #F5C451;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #F5C451;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    background: #F5C451;
    color: #000;
    transform: rotate(360deg);
}

.tool-card h4 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.tool-card p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tool-btn {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.tool-btn:hover::before {
    left: 100%;
}

.tool-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(245, 196, 81, 0.3);
}

/* Coming Soon Badge */
.coming-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* CTA Section - Premium Style */
.partnership-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(245, 196, 81, 0.3);
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.partnership-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F5C451, #E5B140, #F5C451);
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.partnership-cta:hover::before {
    opacity: 1;
    animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #F5C451;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #ccc;
}

.btn-partnership {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-partnership::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-partnership:hover::after {
    width: 300px;
    height: 300px;
}

.btn-partnership:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-partnership i {
    font-size: 1.3rem;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partnership-cta {
        padding: 40px 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #000000;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    background: #1a1a1a;
    border: 1px solid rgba(245, 196, 81, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.contact-form-container h3 {
    color: #F5C451;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form select {
    background: #0d0d11;
    border: 1px solid rgba(245, 196, 81, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-family: inherit;
    width: 100%;
    margin-bottom: 20px;
}

.contact-form select option {
    background: #0d0d11;
    color: #ffffff;
}

.form-success {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.form-success h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.submit-btn {
    background: linear-gradient(135deg, #F5C451, #E5B140);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto 0;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 196, 81, 0.3);
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(245, 196, 81, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #F5C451;
    transform: translateY(-3px);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.5rem;
    min-width: 60px;
}

.method-icon.phone {
    background: linear-gradient(135deg, #F5C451, #E5B140);
}

.method-icon.email {
    background: linear-gradient(135deg, #F5C451, #E5B140);
}

.method-icon.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.method-info h4 {
    color: #F5C451;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.method-info p {
    color: #ccc;
    margin: 0;
    font-size: 1rem;
}

/* Contact Options Cards */
.contact-options-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(245, 196, 81, 0.2);
}

.contact-option-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C89E40, #F5C451);
}

.contact-option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #F5C451;
    background: linear-gradient(135deg, #333, #444);
}

.contact-option-content h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-option-content p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-number,
.contact-action,
.contact-email {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(200, 158, 64, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(200, 158, 64, 0.4);
}

/* Booking Forms */
.booking-form {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-form h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-booking-form input,
.quick-booking-form select,
.quick-booking-form textarea {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
}

.quick-booking-form input::placeholder,
.quick-booking-form textarea::placeholder {
    color: #ccc;
}

.quick-booking-form button {
    background: linear-gradient(135deg, #333, #444);
    color: #F5C451;
    border: 1px solid rgba(245, 196, 81, 0.3);
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-booking-form button:hover {
    background: linear-gradient(135deg, #444, #555);
    border-color: #F5C451;
    transform: translateY(-2px);
}

.booking-btn {
    background: linear-gradient(135deg, #333, #444);
    color: #F5C451;
    border: 1px solid rgba(245, 196, 81, 0.3);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background: linear-gradient(135deg, #444, #555);
    border-color: #F5C451;
    transform: translateY(-2px);
}

/* Contact Information Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(245, 196, 81, 0.2);
}

.contact-info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(200, 158, 64, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C89E40, #F5C451);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #F5C451;
    box-shadow: 0 10px 30px rgba(200, 158, 64, 0.2);
}

.contact-info-card.whatsapp-card::before {
    background: #25d366;
}

.contact-info-card.whatsapp-card:hover {
    border-color: #25d366;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #000000;
}

.contact-info-icon.phone {
    background: linear-gradient(135deg, #F5C451, #C89E40);
}

.contact-info-icon.email {
    background: linear-gradient(135deg, #F5C451, #C89E40);
}

.contact-info-icon.location {
    background: linear-gradient(135deg, #F5C451, #C89E40);
}

.contact-info-icon.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.contact-info-content h4 {
    color: #F5C451;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-content p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-link {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(200, 158, 64, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(200, 158, 64, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(200, 158, 64, 0.3);
    border-color: #F5C451;
    transform: translateY(-2px);
}

.whatsapp-link {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.3) !important;
    border-color: #25d366 !important;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f4b942;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #f4b942;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f4b942;
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
}

.footer-section .contact-info i {
    width: 20px;
    color: #f4b942;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Responsive Design - مُصحح */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 13, 17, 0.95) !important;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .contact-btn {
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .contact-options-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-option-card {
        padding: 25px;
    }
    
    .booking-form {
        padding: 15px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partnership-cta {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 20px;
    }
}

/* Smooth scrolling for all anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #357abd;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.hero-title,
.stat-item,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-btn,
    .contact-btn,
    .btn-primary,
    .btn-outline,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
