:root {
    --primary: #BD4444;
    --beige: #F1DEC4;
    --sage: #73976A;
    --dark-green: #677E61;
    --white: #ffffff;
    --black: #1a1a1a;
    --glass-nav: rgba(255, 255, 255, 0.4);
    --glass-card: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--beige);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-green);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    color: var(--white);
}

.splash-content {
    text-align: center;
}

.truck-wrapper i {
    font-size: 5rem;
    color: var(--primary);
    animation: truckFloat 2s infinite ease-in-out;
}

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

header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.glass-nav {
    width: 100%;
    max-width: 1300px;
    background: var(--glass-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(189, 68, 68, 0.3);
}

.brand-name {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--dark-green);
    font-weight: 700;
}

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

.nav-item {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item i {
    color: var(--sage);
}

.nav-item:hover {
    background: rgba(115, 151, 106, 0.1);
}

.nav-item.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(189, 68, 68, 0.3);
}

.nav-item.active i {
    color: var(--white);
}

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

.call-btn {
    background: var(--sage);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.call-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 3000;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    box-shadow: -15px 0 40px rgba(0,0,0,0.1);
}

.side-menu.active {
    transform: translateX(0);
}

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

.logo-side {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary);
}

.close-menu {
    font-size: 2rem;
    color: var(--sage);
    cursor: pointer;
}

.side-nav-links {
    list-style: none;
    margin-top: 20px;
}

.side-item {
    text-decoration: none;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.side-item.active {
    background: var(--primary);
    color: var(--white);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 5% 40px 5%;
    background: var(--beige);
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.geo-shape {
    position: absolute;
    opacity: 0.8;
    transition: 0.2s;
}

.g-1 { width: 300px; height: 300px; background: var(--sage); top: 10%; left: 5%; border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%; }
.g-2 { width: 400px; height: 400px; background: var(--primary); bottom: -5%; right: -5%; border-radius: 50%; opacity: 0.6; }
.g-3 { width: 150px; height: 150px; background: var(--dark-green); top: 50%; right: 10%; transform: rotate(45deg); border-radius: 20px; }
.g-4 { border: 20px solid var(--primary); width: 200px; height: 200px; top: 15%; right: 25%; border-radius: 50%; opacity: 0.3; }

.dynamic-container {
    background: var(--glass-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid var(--white);
    padding: 60px 40px;
    max-width: 950px;
    text-align: center;
    position: relative;
    z-index: 10;
    border-radius: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    animation: heroEnter 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heroEnter {
    0% { opacity: 0; transform: scale(0.9) translateY(40px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--dark-green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(103, 126, 97, 0.3);
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--black);
}

.highlight {
    color: var(--primary);
    text-decoration: underline wavy var(--sage);
    text-underline-offset: 8px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-main {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 15px 30px rgba(189, 68, 68, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-main:hover {
    transform: translateY(-8px) scale(1.05);
    background: var(--black);
}

.cta-sub {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.4s;
}

.cta-sub:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-8px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-bottom: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
    transform: rotate(45deg);
    animation: arrowJump 2s infinite;
}

@keyframes arrowJump {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-15px) rotate(45deg); }
    60% { transform: translateY(-7px) rotate(45deg); }
}

@media (max-width: 1024px) {
    .nav-links, .nav-actions .call-btn { display: none; }
    .menu-toggle { display: flex; }
    .glass-nav { padding: 10px 20px; width: 95%; }
    .hero h2 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .dynamic-container { padding: 40px 20px; border-radius: 30px; margin-top: 40px; }
    .hero-actions { flex-direction: column; }
    .cta-main, .cta-sub { width: 100%; text-align: center; justify-content: center; }
    .side-menu { width: 80%; }
}
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 240px; 
    height: 100vh;
    background: var(--white);
    z-index: 3000;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-footer {
    margin-top: auto;
    padding-bottom: 80px;
}

.side-footer a {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(189, 68, 68, 0.3);
    transition: 0.3s;
}
.highlight {
    color: var(--primary);
    text-decoration: none; 
}

.geo-shape {
    position: absolute;
    opacity: 0.7;
    animation: moveContinuous 15s infinite alternate ease-in-out; 
}

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

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    cursor: pointer;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    transform: rotate(45deg);
    animation: iphoneArrow 2s infinite;
}

@keyframes iphoneArrow {
    0% { opacity: 0; transform: translateY(-10px) rotate(45deg); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px) rotate(45deg); }
}

.dynamic-container {
    background: var(--glass-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--white);
    padding: 50px 30px;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.05);
}
.logo-text {
    display: flex;
    flex-direction: column; 
    line-height: 1; 
    justify-content: center;
}

.brand-name {
    font-weight: 900;
    font-size: 1.6rem; 
    color: var(--primary);
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.75rem; 
    color: var(--dark-green);
    font-weight: 700;
    margin-top: 2px; 
    white-space: nowrap;
}
.about-section {
    padding: 100px 5%;
    background-color: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.sub-title {
    color: var(--beige);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

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

.text-red { 
    color: var(--primary); 
}

.rich-text p {
    font-size: 1.05rem;
    color: var(--beige);
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 500;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--white);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-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 20px;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.stat-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.bg-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.29;
    stroke-dashoffset: 339.29;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
}

.stat-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--beige);
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.8;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-title { font-size: 2.2rem; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .about-stats-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-section { padding: 60px 5%; }
}
.modern-services {
    padding: 120px 5%;
    background-color: var(--beige);
    position: relative;
    overflow: hidden;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.intro-badge {
    background: var(--sage);
    color: var(--white);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(115, 151, 106, 0.2);
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1.2;
}

.intro-title .accent {
    color: var(--primary);
}

.intro-line {
    width: 100px;
    height: 6px;
    background: var(--primary);
    margin: 30px auto;
    border-radius: 20px;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--dark-green);
    font-weight: 700;
    line-height: 1.8;
}

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

.service-block {
    perspective: 1500px;
}

.block-inner {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    overflow: hidden;
    transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.block-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-block:hover .block-inner {
    background: var(--dark-green);
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    border-color: var(--primary);
}

.service-block:hover .block-content h3,
.service-block:hover .block-content p {
    color: var(--beige) !important;
}

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

.block-content {
    padding: 40px;
    flex-grow: 1;
    transition: 0.5s;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.block-header .icon {
    font-size: 2.5rem;
    color: var(--primary);
    transition: 0.5s;
}

.service-block:hover .icon {
    color: var(--white);
    transform: scale(1.2) rotate(360deg);
}

.block-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--black);
    transition: 0.5s;
}

.block-content p {
    font-size: 1.1rem;
    color: var(--dark-green);
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: justify;
    transition: 0.5s;
}

.block-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.block-tags span {
    background: var(--white);
    color: var(--dark-green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s;
}

.service-block:hover .block-tags span {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

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

@media (max-width: 1024px) {
    .services-interactive-grid { grid-template-columns: 1fr; gap: 30px; }
    .intro-title { font-size: 2.5rem; }
    .block-img { height: 250px; }
    .block-content { padding: 30px; }
}
.portfolio-section {
    padding: 100px 5%;
    background-color: var(--dark-green);
    position: relative;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.p-badge {
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
}

.p-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--beige);
    margin-top: 20px;
}

.text-red { color: var(--primary); }

.p-line {
    width: 60px;
    height: 4px;
    background: var(--sage);
    margin: 20px auto;
}

.p-subtitle {
    color: var(--beige);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
    opacity: 0.9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    height: 300px; 
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 2;
    transition: 0s;
}

.portfolio-item:hover .glow-effect {
    left: 150%;
    transition: 0.8s;
}

.portfolio-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: 0.3s;
    z-index: 3;
}

.portfolio-item:hover::after {
    border-color: var(--primary);
    inset: 10px;
}

@media (max-width: 768px) {
    .p-title { font-size: 2.2rem; }
    .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
    .portfolio-item { height: 200px; }
}
.blog-section {
    padding: 100px 5%;
    background-color: var(--beige);
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-badge {
    background: var(--dark-green);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
}

.blog-title {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 20px;
}

.blog-line {
    width: 70px;
    height: 5px;
    background: var(--primary);
    margin: 20px auto;
}

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

.blog-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.5s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(189, 68, 68, 0.15);
}

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

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

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

.blog-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 800;
    line-height: 1;
}

.blog-date span { display: block; font-size: 1.2rem; }

.blog-body { padding: 30px; }

.blog-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--black);
}

.blog-body p {
    font-size: 0.95rem;
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

@media (max-width: 992px) { .blog-grid { grid-template-columns: 1fr; } }
.testimonials-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--white) 0%, var(--beige) 100%);
    position: relative;
    overflow: hidden;
}

.testi-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testi-header {
    text-align: center;
    margin-bottom: 70px;
}

.testi-badge {
    background: var(--sage);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
}

.testi-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-top: 20px;
    color: var(--black);
}

.testi-line {
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 25px auto;
    border-radius: 10px;
}

.testi-desc {
    color: var(--dark-green);
    font-weight: 700;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.testi-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 35px;
    position: relative;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.testi-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(189, 68, 68, 0.1);
    border-color: var(--primary);
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.1;
    transition: 0.4s;
}

.testi-card:hover .quote-icon {
    opacity: 0.3;
    transform: rotate(-15deg);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--black);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testi-card p {
    font-size: 0.95rem;
    color: var(--dark-green);
    line-height: 1.8;
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 1024px) {
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .testi-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-card { padding: 30px; }
}
.elegant-why-us {
    padding: 100px 5%;
    background-color: #3d4a3b; /* اللون الغامق الفخم */
    position: relative;
    overflow: hidden;
}

.why-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.luxe-label {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.luxe-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.luxe-title .highlight {
    color: var(--primary);
}

.luxe-subtitle {
    color: var(--beige);
    font-size: 1.1rem;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.elegant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.elegant-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-card.full-width {
    grid-column: span 2;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(189, 68, 68, 0.2);
}

.elegant-card:hover {
    background: rgba(189, 68, 68, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.elegant-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--white);
    color: var(--primary);
}

.card-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.card-text p {
    font-size: 0.95rem;
    color: var(--beige);
    line-height: 1.7;
    opacity: 0.8;
    font-weight: 400;
}

@media (max-width: 992px) {
    .elegant-grid { grid-template-columns: 1fr; }
    .elegant-card.full-width { grid-column: span 1; }
    .luxe-title { font-size: 2.2rem; }
    .elegant-card { padding: 30px; flex-direction: column; text-align: center; }
}
.dark-contact-section {
    padding: 120px 5%;
    background-color: #354234;
    position: relative;
    overflow: hidden;
}

.dark-contact-section .luxe-title { color: var(--white); }
.dark-contact-section .luxe-desc { 
    color: var(--beige); 
    opacity: 0.8; 
    margin-top: 15px; 
    text-align: center; 
    max-width: 700px; 
    margin: 15px auto 0; 
    font-weight: 600; 
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.card-icon-box {
    width: 90px;
    height: 90px;
    background: var(--primary);
    color: var(--white);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(189, 68, 68, 0.3);
}

.contact-card h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 15px; font-weight: 900; }
.contact-card p { color: var(--beige); opacity: 0.9; line-height: 1.7; margin-bottom: 30px; font-weight: 600; }

.contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.4s;
}

.contact-btn:hover { background: var(--white); color: var(--primary); transform: scale(1.05); }

.site-footer { background: #232b22; color: var(--beige); padding: 100px 5% 50px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { max-width: 1300px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 80px; }
.f-name { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; display: block; }
.f-sub { font-size: 0.85rem; font-weight: 700; color: var(--sage); }
.f-desc { margin-top: 25px; line-height: 1.9; opacity: 0.7; font-weight: 600; }
.footer-col h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 30px; position: relative; padding-bottom: 15px; font-weight: 800; }
.footer-col h4::after { content: ''; position: absolute; right: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary); }
.f-links, .f-contact { list-style: none; }
.f-links li, .f-contact li { margin-bottom: 18px; }
.f-links a { color: var(--beige); text-decoration: none; transition: 0.3s; font-weight: 600; opacity: 0.8; }
.f-links a:hover { color: var(--primary); opacity: 1; padding-right: 10px; }
.f-contact li { display: flex; align-items: center; gap: 15px; font-weight: 600; }
.f-contact i { color: var(--primary); font-size: 1.2rem; }
.footer-bottom { text-align: center; padding-top: 50px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { opacity: 0.6; font-size: 0.9rem; font-weight: 600; }
.gmt-credit { margin-top: 15px; font-weight: 800; font-size: 1rem; color: var(--white); }
.gmt-credit a { color: var(--primary); text-decoration: none; transition: 0.3s; }

.floating-actions { position: fixed; bottom: 40px; left: 40px; display: flex; flex-direction: column; gap: 20px; z-index: 9999; }
.float-btn { width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-size: 1.8rem; text-decoration: none; box-shadow: 0 15px 35px rgba(0,0,0,0.3); transition: 0.4s; animation: bounceFloat 3s infinite ease-in-out; }
.float-call { background: var(--primary); }
.float-wa { background: #25d366; }

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

@media (max-width: 768px) {
    .hero-glass-card h2 { font-size: 1.5rem !important; }
    .hero-glass-card p { font-size: 0.85rem !important; line-height: 1.5 !important; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .f-contact li { justify-content: center; }
    .floating-actions { bottom: 25px; left: 25px; }
}
.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header .luxe-label {
    display: inline-block;
    margin-bottom: 15px;
}

.contact-header .luxe-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-header .luxe-desc {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-header .luxe-title {
        font-size: 2.2rem;
    }
    .contact-header .luxe-desc {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    #splash-screen h1 {
        font-size: 1.4rem !important;
        margin-top: 15px;
    }
    
    #splash-screen p {
        font-size: 0.8rem !important;
        opacity: 0.9;
    }

    .splash-logo i {
        font-size: 3.5rem !important;
    }

    .hero-glass-card h2, 
    .dynamic-container h2,
    .hero h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .hero-glass-card p, 
    .dynamic-container p,
    .hero p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .hero-glass-card, 
    .dynamic-container {
        padding: 30px 20px !important;
        width: 95% !important;
    }

    .hero-btns, 
    .hero-actions {
        gap: 10px !important;
    }

    .cta-main, .cta-sub, .btn-primary, .btn-secondary {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}