* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans Arabic', 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(117, 79, 61, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    z-index: 1000;
    padding: 10px 30px;
    width: 90%;
    max-width: 900px;
    min-height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #754F3D, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 1.4rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #754F3D;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #754F3D;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #754F3D, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.hero-description {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-features {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.love {
    color: #754F3D;
    font-weight: 600;
}

.respect {
    color: #ffffff;
    font-weight: 600;
}

.cta-container {
    width: 100%;
    max-width: 600px;
}

.cta-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(117, 79, 61, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 8px;
    backdrop-filter: blur(20px);
}

.email-input,
.phone-input {
    flex: 1;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    outline: none;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.email-input::placeholder,
.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-button {
    padding: 20px 40px;
    background: linear-gradient(135deg, #754F3D, #ffffff);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(117, 79, 61, 0.3);
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
    background: rgba(117, 79, 61, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    margin-top: 1rem;
    transition: all 0.5s ease;
    transform: translateY(20px);
    opacity: 0;
}

.thank-you-message.show {
    transform: translateY(0);
    opacity: 1;
}

.thank-you-message h3 {
    font-size: 2rem;
    color: #754F3D;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.thank-you-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

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

.floating-circle {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #754F3D, rgba(255, 255, 255, 0.3));
    border-radius: 50%;
    opacity: 0.4;
    animation: float 12s ease-in-out infinite;
}

.gradient-blob {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(117, 79, 61, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 20px;
    background: #111111;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #754F3D, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: rgba(117, 79, 61, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(117, 79, 61, 0.2);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(117, 79, 61, 0.2), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon {
    font-size: 1.2rem;
    color: #754F3D;
    font-weight: 600;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(117, 79, 61, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(117, 79, 61, 0.3);
    box-shadow: 0 25px 50px rgba(117, 79, 61, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #754F3D, #ffffff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

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

.service-icon i {
    font-size: 2rem;
    color: #000000;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    opacity: 0;
    transition: all 0.3s;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(-10px);
}

.service-arrow i {
    color: #754F3D;
    font-size: 1.5rem;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

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

.team-card {
    background: rgba(117, 79, 61, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(117, 79, 61, 0.2);
}

.team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #754F3D, #ffffff);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.team-card p {
    color: rgba(255, 255, 255, 0.8);
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: #754F3D;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    background: rgba(117, 79, 61, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(117, 79, 61, 0.2);
    transform: translateX(-5px);
}

.contact-method .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #754F3D, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method .icon i {
    color: #000000;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 20px 25px;
    background: rgba(117, 79, 61, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #754F3D;
    background: rgba(117, 79, 61, 0.15);
    box-shadow: 0 0 0 3px rgba(117, 79, 61, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
    padding: 20px 30px;
    background: linear-gradient(135deg, #754F3D, #ffffff);
    color: #000000;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(117, 79, 61, 0.3);
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: #111111;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-social h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #754F3D;
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(117, 79, 61, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #754F3D;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(117, 79, 61, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 8px 20px;
        min-height: 60px;
        max-width: none;
    }
    
    .logo img {
        width: 50px;
        height: 50px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 3rem 0;
        border-radius: 20px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-section {
        flex-direction: column;
        padding: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-circle,
    .gradient-blob {
        display: none;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .team-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 10px;
        width: 98%;
        padding: 5px 15px;
        min-height: 55px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .hamburger {
        width: 30px;
        height: 30px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .nav-menu {
        top: 70px;
        padding: 2rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .hero {
        padding: 100px 15px 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-container {
        max-width: 100%;
    }
    
    .email-input,
    .phone-input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

.logo {
    cursor: pointer;
}