:root {
    --primary-color: #d4af37; 
    --secondary-color: #0b1120; 
    --text-color: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--secondary-color);
    overflow-x: hidden;
    direction: rtl;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: rgba(11, 17, 32, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

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

.logo-img {
    height: 60px; 
    width: auto;
}

.brand-name {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 800;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.call-btn {
    background: linear-gradient(45deg, var(--primary-color), #f1d57e);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.mobile-nav-overlay {
    display: none; 
}

.menu-toggle {
    display: none;
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/claude-peladeau-XMlUdIKVsdU-unsplash.jpg') center/cover;
    z-index: -2;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(11,17,32,0.4) 0%, rgba(11,17,32,0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

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

.btn {
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary { background: var(--primary-color); color: #000; }
.btn-secondary { border: 2px solid #fff; color: #fff; }

.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
@media (max-width: 992px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-toggle span {
        width: 30px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
    }

    .mobile-nav-overlay {
        display: flex;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(11, 17, 32, 0.98);
        z-index: 1500;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease-in-out;
    }

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

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

    .mobile-nav-links li { margin: 20px 0; }

    .mobile-nav-links a {
        color: #fff;
        font-size: 1.8rem;
        text-decoration: none;
        font-weight: 700;
    }

    .hero-title { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
}
.about-modern {
    padding: 150px 0;
    background: #050a18;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    animation: pulseShape 10s infinite alternate;
}
.shape-1 { width: 300px; height: 300px; background: var(--primary-color); top: 10%; left: -5%; }
.shape-2 { width: 400px; height: 400px; background: #2563eb; bottom: 10%; right: -5%; }

@keyframes pulseShape {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, 30px); }
}

.modern-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    padding: 0 50px;
}

.modern-image-side {
    flex: 1;
    position: relative;
}

.image-mask {
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; 
    overflow: hidden;
    border: 5px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.image-mask img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.experience-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 10px 20px;
    font-weight: 800;
    border-radius: 50px;
    font-size: 0.9rem;
}

.modern-text-side {
    flex: 1.2;
}

.top-label {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.main-title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

.main-title span {
    background: linear-gradient(to left, #d4af37, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.f-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.f-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.f-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.seo-dense-text {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.8;
    border-right: 3px solid var(--primary-color);
    padding-right: 20px;
}

.explore-more {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.explore-more:hover { gap: 15px; }

@media (max-width: 992px) {
    .modern-wrapper {
        flex-direction: column;
        padding: 0 20px;
        gap: 50px;
        text-align: center;
    }
    .main-title { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .seo-dense-text { border: none; padding: 0; }
}
.before-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.f-card:nth-child(2) { transition-delay: 0.2s; }
.f-card:nth-child(3) { transition-delay: 0.4s; }
.f-card:nth-child(4) { transition-delay: 0.6s; }
.services {
    padding: 120px 0;
    background: #0b1120;
    position: relative;
    z-index: 1;
}

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

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
}

.section-main-title {
    font-size: 2.8rem;
    color: #fff;
    margin-top: 20px;
    line-height: 1.3;
}

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

.title-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.card-inner {
    position: relative;
    z-index: 2;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), #f1d57e);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #000;
    transition: 0.5s;
}

.service-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    color: #e2e8f0;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.card-bg-number {
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    transition: 0.5s;
}
.service-card:hover {
    transform: translateY(-15px);
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card:hover .icon-box {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 0 20px var(--primary-color);
}

.service-card:hover .card-bg-number {
    color: rgba(212, 175, 55, 0.07);
    transform: scale(1.2);
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
}

@media (max-width: 768px) {
    .section-main-title { font-size: 1.8rem; }
    .services-grid { padding: 0 20px; }
    .service-card { padding: 30px 20px; }
}
.pure-portfolio {
    padding: 100px 0;
    background: #050a18;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.gold-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 15px;
}

.pure-title {
    font-size: 2.4rem;
    color: #fff;
    line-height: 1.4;
}

.pure-title span {
    color: var(--primary-color);
}

.pure-subtitle {
    color: #64748b;
    margin-top: 10px;
    font-size: 1.1rem;
}

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

.pure-item {
    perspective: 1000px; 
}

.frame {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0f172a;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); 
    transition: all 0.8s ease;
}

.frame:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.frame:hover::after {
    left: 125%;
}
@media (max-width: 992px) {
    .pure-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 15px;
    }
    .frame { height: 250px; }
}

@media (max-width: 600px) {
    .pure-grid {
        grid-template-columns: 1fr; 
    }
    .frame { height: 300px; }
    .pure-title { font-size: 1.6rem; }
}
.why-us {
    padding: 120px 0;
    background: linear-gradient(to bottom, #0a132c, #0b1120);
    position: relative;
    overflow: hidden;
}

.why-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

.why-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid var(--primary-color);
}

.why-title {
    color: #fff;
    font-size: 2.6rem;
    margin-top: 20px;
    line-height: 1.4;
}

.why-title span {
    color: var(--primary-color);
}

.why-subtitle {
    color: #94a3b8;
    margin-top: 15px;
    font-size: 1.2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 50px;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: 0.5s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-card:hover .why-icon {
    background: var(--primary-color);
    color: #000;
    transform: rotateY(360deg);
}

.why-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-grid {
        padding: 0 20px;
    }
    .why-title {
        font-size: 1.8rem;
    }
}
.contact {
    position: relative;
    padding: 100px 0;
    min-height: 100vh; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    background: url('images/rodrigo-rodrigues-wolf-r-t-YXHUyi3IAAg-unsplash.jpg') center/cover fixed;
    overflow: hidden;
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 24, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center; 
}

.contact-wrapper {
    display: flex;
    gap: 100px;
    width: 100%;
    max-width: 1100px; 
    justify-content: center; 
    align-items: stretch; 
}

.contact-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 60px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
}
@media (min-width: 1200px) {
    .contact-card {
        max-width: 500px;
    }
}

.card-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center; 
}

.card-desc {
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    padding: 10px;
    border-radius: 15px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #111111;
    font-family: 'Cairo';
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}
@media (max-width: 992px) {
    .contact {
        padding: 60px 20px;
    }
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        width: 100%;
        max-width: 100% !important;
    }
}
.site-footer {
    background: #050a18;
    color: #fff;
    padding: 80px 0 0;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    padding: 0 40px 50px;
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.about-col p {
    color: #94a3b8;
    line-height: 1.8;
    margin: 20px 0;
}

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

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #94a3b8;
}

.contact-info i {
    color: var(--primary-color);
}

.footer-bottom {
    background: #020617;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-size: 0.9rem;
    color: #64748b;
}

.bottom-flex a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    position: relative;
}

.whatsapp { background-color: #25d366; animation: pulse-green 2s infinite; }
.call { background-color: var(--primary-color); color: #000; animation: pulse-gold 2s infinite; }

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
.tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.float-btn:hover .tooltip { opacity: 1; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .bottom-flex { flex-direction: column; gap: 10px; }
    .floating-btns { bottom: 20px; right: 20px; }
    .float-btn { width: 50px; height: 50px; font-size: 1.5rem; }
}
html {
    scroll-behavior: smooth;
}
.nav-links a.active, 
.mobile-nav-links a.active {
    color: var(--primary-color) !important;
    font-weight: 800;
}
@media (min-width: 993px) {
    .nav-links a.active::after {
        width: 100% !important;
    }
}
.before-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}