:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2F5644;
    --text-color: #1a1a1a;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --spacing-unit: clamp(1rem, 4vw, 4rem);
    --hero-bg: #F2F2F2;
}

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

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
}

html {
    font-family: 'Rubik', sans-serif;
    direction: rtl;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
section {
    padding: var(--spacing-unit);
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

/* About Section */
.about {
    background-color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent 10%, transparent 90%, rgba(0, 0, 0, 0.02));
    max-width: 100%;
    width: 100%;
}

.about h1 {
    font-size: 32px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.about p {
    font-size: 18px;
    max-width: 480px;
    line-height: 1.6;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Process Section */
.process {
    background-color: var(--white);
    color: var(--primary-color);
    padding: var(--spacing-unit);
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: none;
}

.process h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease-out, box-shadow 0.3s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: right;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Remove duplicate hover styles */
.feature-card.visible:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Add delay for each card */
.feature-card:nth-child(1) {
    transition-delay: 0s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card:first-child {
    background-image: url('assets/card-01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.feature-card:first-child .card-content h4,
.feature-card:first-child .card-content p,
.feature-card:first-child .card-content h3 {
    color: white;
    opacity: 1;
}

.feature-card:first-child .tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:first-child .help-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:first-child .icon {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.feature-card:nth-child(2) {
    background-image: url('assets/card-02.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.feature-card:nth-child(2) .card-content h4,
.feature-card:nth-child(2) .card-content p,
.feature-card:nth-child(2) .card-content h3 {
    color: white;
    opacity: 1;
}

.feature-card:nth-child(2) .tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:nth-child(2) .help-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:nth-child(2) .icon {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.feature-card:nth-child(3) {
    background-image: url('assets/card-03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.feature-card:nth-child(3) .card-content h4,
.feature-card:nth-child(3) .card-content p,
.feature-card:nth-child(3) .card-content h3 {
    color: white;
    opacity: 1;
}

.feature-card:nth-child(3) .tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:nth-child(3) .help-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card:nth-child(3) .icon {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.card-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.card-header .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4C6FFF;
    background: rgba(76, 111, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.help-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.help-icon:hover {
    background: rgba(0, 0, 0, 0.1);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.tag {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(76, 111, 255, 0.1);
    border-radius: 5px;
    font-weight: 600;
    color: #000000;
    opacity: 1;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: auto;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
}

.price-note {
    position: absolute;
    top: 100%;
    right: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -6px;
    font-weight: normal;
}

.pricing-note {
    margin-top: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .process {
        padding: calc(var(--spacing-unit) + 10px) var(--spacing-unit) var(--spacing-unit) var(--spacing-unit);
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 320px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Features Section */
.features {
    padding: var(--spacing-unit);
    max-width: none;
    width: 100%;
}

.features-intro {
    max-width: 500px;
    margin: 0 auto 2rem;
    text-align: center;
}

.features-intro h1 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
}

.features-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    max-width: 920px;
    margin: 0 auto 2rem;
}

.feature-item {
    padding: 0.5rem;
    transition: transform 0.3s ease;
    text-align: center;
    max-width: 210px;
    margin: 0 auto;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--white);
    margin: 0 auto 0.75rem;
}

.feature-icon.blue {
    background: #4285f4;
}

.feature-icon.green {
    background: #34a853;
}

.feature-icon.orange {
    background: #fbbc05;
}

.feature-icon.purple {
    background: #7c4dff;
}

.feature-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 16px;
    line-height: 1.3;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 24px;
}

.features-cta {
    text-align: center;
    margin-top: 28px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 650px;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: var(--spacing-unit);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-item {
        max-width: 100%;
    }
    
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-subtitle {
        font-size: 16px;
        max-width: 320px;
        line-height: 1.4;
        margin-bottom: 24px;
    }
    
    .feature-item p {
        font-size: 16px;
        line-height: 1.4;
        max-width: 200px;
        margin: 0 auto 16px;
    }

    .features-cta {
        display: none;
    }
}

/* Contact Section */
.contact {
    text-align: center;
}

form {
    max-width: 650px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

input, textarea {
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--text-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    text-align: center;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem var(--spacing-unit);
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}


/* Remove all editorial styles */
.editorial,
.editorial-grid,
.editorial-text,
.mega-text,
.editorial-subtitle,
.editorial-images,
.image-stack,
.image {
    display: none;
}

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 64px 32px;
    margin-top: 64px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-quote {
    margin-bottom: 48px;
}

.footer-quote p {
    font-size: 24px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.footer-nav {
    margin-bottom: 48px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 48px 24px;
    }

    .footer-quote p {
        font-size: 18px;
        padding: 0 24px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .footer-nav a {
        font-size: 16px;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;  /* Changed from right to left */
    right: 0;
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    display: block;
    position: relative;
}

.logo-image {
    width: 80px;
    height: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }
    
    .logo-image {
        width: 60px;
    }
}

.side-menu {
    position: fixed;
    top: 12%;
    left: 1.2rem;
    transform: translateY(-50%);
    z-index: 1000;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.side-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 1;
    display: block;
    text-align: left;
}

.side-menu a:hover {
    opacity: 0.4;
    transform: translateX(5px);
}

.side-menu a.active {
    opacity: 0.25;
    font-weight: 500;
}

@media (max-width: 768px) {
    .side-menu {
        display: none;  /* Hide on mobile */
    }
    
    .site-header {
        padding: 1rem;
    }
    
    .logo-image {
        width: 60px;
    }
}

.circles-container {
    transform-origin: center;
}

.circle {
    transform-origin: center;
    transition: all 0.5s ease-in-out;
}

.circle.main {
    animation: pulse 3s infinite;
}

.circle.split-1 {
    animation: split1 3s infinite;
}

.circle.split-2 {
    animation: split2 3s infinite;
}

.circle.split-3 {
    animation: split3 3s infinite;
}

@keyframes pulse {
    0%, 100% { r: 4.5; }
    50% { r: 2; }
}

@keyframes split1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -8px); }
}

@keyframes split2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-7px, 6px); }
}

@keyframes split3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(7px, 6px); }
}

.rotating-circles {
    transform-origin: center;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-unit);
    background-color: var(--white);
    max-width: none;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 54px;
}

.faq-intro h2 {
    font-size: 42px;
    margin-bottom: 2px;
    color: var(--primary-color);
    font-weight: 500;
}

.faq-intro p {
    font-size: 18px;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 12px;
    text-align: right;
}

.faq-item {
    cursor: pointer;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: var(--spacing-unit);
    }

    .faq-intro h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-item {
        padding: 20px;
    }
}

.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.3s ease;
    z-index: 1001;
    white-space: nowrap;
}

.mobile-floating-cta.visible {
    bottom: 24px;
}

@media (max-width: 768px) {
    .mobile-floating-cta {
        display: flex;
    }
    
    .mobile-floating-cta.cta-button {
        padding: 12px 24px;
        font-size: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 100px;
    }
    
    .mobile-floating-cta .cta-icon {
        width: 14px;
        height: 14px;
    }
    
    .side-menu {
        display: none;  /* Hide on mobile */
    }
    
    .site-header {
        padding: 1rem;
    }
    
    .logo-image {
        width: 60px;
    }
} 