:root {
    --gold: #b1964f;
    --gold-l: #dccba1;
    --gold-d: #8e783f;
    --dk: #2c4a57;
    --dk2: #365b6a;
    --dk3: #406c7e;
    --wh: #FFFFFF;
    --mt: #AAAAAA;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--dk);
    color: var(--wh);
    overflow-x: hidden;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dk);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.splash-logo {
    width: 150px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

#main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.brand-name {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--gold-l);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-item {
    text-decoration: none;
    color: var(--wh);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-item:hover {
    color: var(--gold);
}

.nav-item.active {
    background: var(--gold);
    color: var(--dk);
    box-shadow: 0 4px 15px rgba(177, 150, 79, 0.4);
}

.call-btn {
    background: var(--gold);
    color: var(--dk);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--gold-d);
}

.hero-section {
    min-height: 100vh;
    padding: 150px 5% 50px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    color: var(--gold);
    opacity: 0.15;
    font-size: 4rem;
    animation: float 10s infinite linear;
}

.furniture-1 { top: 15%; left: 10%; animation-duration: 15s; }
.furniture-2 { bottom: 20%; left: 15%; animation-duration: 18s; }
.truck-1 { top: 20%; right: 10%; animation-duration: 12s; }
.box-1 { bottom: 30%; right: 15%; animation-duration: 20s; }
.truck-2 { top: 50%; left: 40%; animation-duration: 25s; }

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 50px) rotate(10deg); }
    66% { transform: translate(-20px, 20px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-3);
    font-weight: 900;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--mt);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.hero-form-container {
    display: flex;
    justify-content: flex-end;
}

.glass-form {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
}

.glass-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gold-l);
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 15px 45px 15px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--wh);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    border: none;
    border-radius: 12px;
    color: var(--dk);
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--wh);
    transform: scale(1.02);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--wh);
    transition: 0.3s;
}

.mobile-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 74, 87, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
}

.mobile-overlay.active { top: 0; }

.mobile-menu-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.mobile-nav-links {
    list-style: none;
}

.m-link {
    display: block;
    text-decoration: none;
    color: var(--wh);
    font-size: 1.3rem;
    padding: 15px 0;
    font-weight: 700;
    transition: 0.3s;
}

.m-link.active {
    color: var(--gold);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-stats { justify-content: center; }
    .hero-form-container { justify-content: center; }
    .nav-links, .call-btn { display: none; }
    .mobile-menu-btn { display: flex; }
}

@media (max-width: 480px) {
    #main-header { width: 95%; }
    .hero-content h1 { font-size: 2rem; }
    .glass-form { padding: 25px; }
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--gold-l);
}

.brand-sub {
    font-size: 0.85rem;
    color: var(--wh);
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.7rem;
    }

    .site-logo {
        width: 40px;
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.7rem !important;
        line-height: 1.4;
    }

    .hero-desc {
        font-size: 0.9rem !important;
        line-height: 1.6;
        margin-bottom: var(--space-3);
    }

    .stat-item .num {
        font-size: 1.5rem !important;
    }

    .stat-item .lab {
        font-size: 0.75rem !important;
    }

    .glass-form h3 {
        font-size: 1.4rem;
    }

    .glass-form p {
        font-size: 0.8rem;
    }

    .input-group input, .input-group select {
        padding: 12px 40px 12px 12px;
        font-size: 0.85rem;
    }
}
.input-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-group select option {
    background-color: var(--dk2);
    color: var(--wh);
    padding: 10px;
}

.input-group select:invalid {
    color: var(--mt);
}

.input-group select option:checked {
    background-color: var(--gold);
    color: var(--dk);
}
.about-section {
    padding: 100px 5%;
    background-color: var(--wh);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visuals {
    position: relative;
}

.image-stack {
    position: relative;
    height: 600px;
}

.img-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.main-img {
    width: 80%;
    height: 500px;
    position: relative;
    z-index: 2;
}

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

.sub-img {
    width: 60%;
    height: 350px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 10px solid var(--wh);
}

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

.experience-badge {
    position: absolute;
    top: 40px;
    right: 10%;
    background: var(--gold);
    color: var(--dk);
    padding: 25px;
    border-radius: 20px;
    z-index: 4;
    text-align: center;
    box-shadow: 0 15px 30px rgba(177, 150, 79, 0.3);
    animation: bounce 3s infinite;
}

.exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.about-content {
    direction: rtl;
}

.sub-title {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-right: 50px;
}

.sub-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.main-title {
    color: var(--dk);
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 900;
    margin-bottom: 25px;
}

.main-title span {
    color: var(--gold);
}

.about-p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.stat-card i {
    font-size: 2rem;
    color: var(--gold);
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dk);
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
}

.privileges-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.privilege-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-wrap {
    background: var(--dk);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.text-wrap h5 {
    color: var(--dk);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.text-wrap p {
    color: #777;
    font-size: 0.85rem;
}

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

@media (max-width: 1024px) {
    .about-container { grid-template-columns: 1fr; }
    .image-stack { height: 500px; max-width: 600px; margin: 0 auto; }
    .main-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .privileges-list { grid-template-columns: 1fr; }
    .main-img { width: 100%; }
    .sub-img { display: none; }
    .image-stack { height: 350px; }
}
.about-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-section .animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.image-stack .main-img {
    transform: translateX(100px);
    opacity: 0;
    transition: 1s ease-out;
}

.image-stack .sub-img {
    transform: scale(0.5);
    opacity: 0;
    transition: 1.2s ease-out 0.3s;
}

.about-section.active .main-img {
    transform: translateX(0);
    opacity: 1;
}

.about-section.active .sub-img {
    transform: scale(1);
    opacity: 1;
}

.stat-card {
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: var(--wh);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(177, 150, 79, 0.1), transparent);
    transition: 0.5s;
}

.stat-card:hover::after {
    left: 100%;
}

.privilege-item {
    opacity: 0;
    transform: translateX(30px);
    transition: 0.5s ease-out;
}

.privilege-item.show {
    opacity: 1;
    transform: translateX(0);
}

.privilege-item:hover .icon-wrap {
    transform: rotateY(360deg);
    background: var(--gold);
    color: var(--dk);
}

.icon-wrap {
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#main-header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.header-scrolled {
    top: 15px;
    width: 94%;
}

.navbar {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 12px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

#main-header.header-scrolled .navbar {
    background: rgba(44, 74, 87, 0.92);
    border-color: var(--gold);
    padding: 8px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--gold-l);
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--wh);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    text-decoration: none;
    color: var(--wh);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-item:hover {
    color: var(--gold-l);
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    background: var(--gold);
    color: var(--dk);
    box-shadow: 0 5px 20px rgba(177, 150, 79, 0.5);
}

.call-btn {
    background: var(--gold);
    color: var(--dk);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: var(--wh);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--wh);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    #main-header { width: 92%; top: 20px; }
    .nav-links, .call-btn { display: none; }
    .mobile-menu-btn { display: flex; }
}

@media (max-width: 480px) {
    #main-header { width: 90%; top: 15px; }
    .navbar { padding: 8px 18px; }
    .site-logo { width: 40px; height: 40px; }
    .brand-name { font-size: 1rem; }
    .brand-sub { font-size: 0.65rem; }
}
.services-section {
    padding: 100px 5%;
    background-color: #fdfaf3; 
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-desc {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: var(--wh);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(44, 74, 87, 0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(177, 150, 79, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(177, 150, 79, 0.15);
    border-color: var(--gold);
}

.service-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1) rotate(2deg);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-tag {
    background: var(--gold);
    color: var(--dk);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.service-body {
    padding: 35px;
    flex-grow: 1;
}

.service-body h3 {
    color: var(--dk);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.service-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.service-body p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
    text-align: justify;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dk2);
    font-weight: 600;
}

.service-features li i {
    color: var(--gold);
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .service-body {
        padding: 25px;
    }
    
    .service-body h3 {
        font-size: 1.3rem;
    }
    
    .service-body p {
        font-size: 0.9rem;
    }
}
.blog-section {
    padding: 100px 5%;
    background: #fbf1de;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    background: var(--wh);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    transition: 0.4s ease;
    border: 1px solid rgba(177, 150, 79, 0.1);
}

.blog-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(177, 150, 79, 0.12);
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-info {
    padding: 30px;
}

.blog-info h3 {
    color: var(--dk);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.blog-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.read-more {
    text-decoration: none;
    color: var(--gold-d);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 480px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-info h3 { font-size: 1.1rem; }
}
.reviews-section {
    padding: 80px 5%;
    background: #fdfdfd;
}

.reviews-wall {
    max-width: 1300px;
    margin: 50px auto 0;
    column-count: 4;
    column-gap: 20px;
}

.review-mini-card {
    display: inline-block;
    width: 100%;
    background: var(--wh);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 25px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    break-inside: avoid;
}

.review-mini-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold-l);
    box-shadow: 0 20px 40px rgba(177, 150, 79, 0.1);
}

.stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}

.review-mini-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 15px;
}

.reviewer-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dk);
    text-align: left;
    border-top: 1px solid #f9f9f9;
    padding-top: 10px;
}

.review-mini-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.review-mini-card.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .reviews-wall { column-count: 3; }
}

@media (max-width: 992px) {
    .reviews-wall { column-count: 1; }
}

@media (max-width: 500px) {
    .reviews-wall { column-count: 1; }
    .review-mini-card { padding: 20px; }
    .review-mini-card p { font-size: 0.85rem; }
}
.gallery-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* سرعة انتقال خاطفة */
}

.gallery-item {
    min-width: calc(33.333% - 20px); /* 3 صور في الشاشة */
    height: 450px;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .gallery-item {
        min-width: calc(50% - 20px);
        height: 400px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        padding: 0;
    }
    .gallery-track {
        gap: 0;
    }
    .gallery-item {
        min-width: 100%; /* صورة واحدة بعرض الشاشة بالكامل */
        height: 380px;
        padding: 0 15px;
    }
    .gallery-item img {
        border-radius: 15px;
    }
}
.why-us-creative {
    padding: 120px 5%;
    background-color: var(--dk);
    position: relative;
    overflow: hidden;
}

.why-us-creative .main-title { color: var(--wh); }

.features-floating-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.feature-blob {
    flex: 1 1 300px;
    max-width: 450px;
}

.f-card {
    background: linear-gradient(145deg, var(--dk2), var(--dk));
    border: 1px solid rgba(177, 150, 79, 0.15);
    padding: 50px 40px;
    border-radius: 40px 10px 40px 10px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    z-index: 1;
}

.f-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--gold), transparent);
    opacity: 0;
    z-index: -1;
    transition: 0.4s;
}

.f-card:hover {
    transform: translateY(-20px) rotate(-1deg);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.f-card:hover::before {
    opacity: 0.1;
}

.f-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--wh);
    opacity: 0.03;
    line-height: 1;
}

.f-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--dk);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.f-card:hover .f-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--wh);
}

.f-card h3 {
    color: var(--gold-l);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.f-card p {
    color: var(--mt);
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

.feature-blob:nth-child(even) {
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .feature-blob:nth-child(even) { margin-top: 0; }
    .features-floating-grid { gap: 20px; }
}

@media (max-width: 480px) {
    .f-card {
        padding: 35px 25px;
        border-radius: 30px 10px;
    }
    .f-card h3 { font-size: 1.3rem; }
    .f-card p { font-size: 0.9rem; }
}
.contact-section {
    padding: 100px 5%;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: var(--dk);
}

.contact-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1500&q=80') center/cover;
    filter: blur(8px) brightness(0.3);
    z-index: 0;
    transform: scale(1.1);
}

.contact-section .section-header, 
.contact-container {
    position: relative;
    z-index: 1;
}

.contact-container {
    width: 100%;
    max-width: 1100px;
    margin-top: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.contact-card, .address-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.c-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--dk);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.whatsapp-bg {
    background: #25d366;
    color: white;
}

.c-info h3 {
    color: var(--gold-l);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.c-info p {
    color: var(--wh);
    font-size: 1.2rem;
    font-weight: 700;
}

.c-link {
    margin-right: auto;
    background: var(--wh);
    color: var(--dk);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
    white-space: nowrap;
}

.c-link:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.address-card {
    width: 100%;
    justify-content: center;
    background: rgba(177, 150, 79, 0.1);
    border-color: rgba(177, 150, 79, 0.3);
}

.address-card .c-info {
    text-align: center;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .c-link {
        margin: 15px auto 0;
    }
    .c-info p {
        font-size: 1.1rem;
    }
    .address-card {
        flex-direction: column;
        text-align: center;
    }
}
.main-footer {
    background-color: #1a2d35;
    padding: 80px 5% 20px;
    color: var(--wh);
    position: relative;
    border-top: 1px solid rgba(177, 150, 79, 0.2);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-l);
}

.footer-logo {
    color: var(--gold-l);
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--mt);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--mt);
    transition: 0.3s;
    font-size: 0.95rem;
    display: block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mt);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.bottom-content p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.developer-credit {
    font-size: 0.85rem;
    color: var(--mt);
}

.developer-credit a {
    color: var(--gold-l);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed var(--gold);
    transition: 0.3s;
}

.developer-credit a:hover {
    color: var(--wh);
    border-bottom-style: solid;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .contact-info li {
        justify-content: center;
    }
    .footer-links a:hover {
        transform: translateY(-3px);
    }
}
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-action {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float-pulse 2s infinite;
}

.float-whatsapp {
    background-color: #25d366;
}

.float-phone {
    background-color: var(--gold);
}

.float-action:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@keyframes float-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-action {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .brand-name {
        font-size: 0.9rem !important;
    }

    .brand-sub {
        font-size: 0.6rem !important;
    }

    .site-logo {
        width: 35px !important;
        height: 35px !important;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .hero-desc {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .stat-item .num {
        font-size: 1.2rem !important;
    }

    .stat-item .lab {
        font-size: 0.6rem !important;
    }

    .glass-form {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .glass-form h3 {
        font-size: 1.1rem !important;
    }

    .glass-form p {
        font-size: 0.7rem !important;
    }

    .input-group input, .input-group select {
        padding: 10px 35px 10px 10px !important;
        font-size: 0.75rem !important;
    }

    .submit-btn {
        padding: 10px !important;
        font-size: 0.8rem !important;
    }
}
@media (max-width: 768px) {
    .about-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .about-content {
        order: 1 !important;
        text-align: center !important;
    }

    .about-visuals {
        order: 2 !important;
        width: 100% !important;
    }

    .image-stack {
        height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .main-img, .sub-img {
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        border: none !important;
        border-radius: 20px !important;
    }

    .experience-badge {
        grid-column: span 2 !important;
        position: static !important;
        transform: none !important;
        margin: 10px auto !important;
        width: 100% !important;
        padding: 15px !important;
        animation: none !important;
    }
}
@media (max-width: 480px) {
    .gallery-container {
        padding: 0 !important;
        margin: 0 !important;
    }

    .gallery-track {
        gap: 0 !important;
    }

    .gallery-item {
        min-width: 100% !important;
        padding: 0 !important;
        height: 320px !important;
    }

    .gallery-item img {
        border-radius: 0 !important; 
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 0 !important;
    }

    .gallery-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .gallery-track {
        display: flex !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .gallery-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .gallery-item img {
        width: 100% !important;
        height: 350px !important;
        object-fit: cover !important;
        border-radius: 20px !important;
    }
}