/* index.css */
:root {
    --crimson: #b00017;
    --charcoal: #1b1f20;
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.65);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --glow-crimson: 0 0 12px rgba(176, 0, 23, 0.3);
}

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

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--charcoal);
    font-family: 'Cairo', sans-serif;
    color: var(--white);
    line-height: 1.5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #1b1f20;
}

::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d41a2f;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--crimson) #1b1f20;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--crimson);
    outline-offset: 2px;
}

a, button, .nav-link, .footer-col a {
    -webkit-tap-highlight-color: transparent;
}

input, textarea, button, a, div {
    -webkit-touch-callout: none;
}

/* ========== HEADER ========== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(27, 31, 32, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
    position: fixed;
    background: rgba(18, 21, 22, 0.96);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(176, 0, 23, 0.25);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12)) drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-right: 1px solid var(--border-subtle);
    padding-right: 0.85rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 2.75rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white-muted);
    transition: color 0.25s;
    position: relative;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1.5px;
    background: var(--crimson);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--white);
    text-shadow: 0 0 8px rgba(176, 0, 23, 0.3);
}

.header-accent {
    display: flex;
    align-items: center;
}

.accent-indicator {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--crimson);
    box-shadow: var(--glow-crimson);
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(27,31,32,0.3) 0%, rgba(27,31,32,0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    margin-left: auto;
    text-align: right;
}

.ribbon-symbol {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    margin-right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M20,50 C20,30 35,18 50,25 C65,32 75,48 70,62 C65,76 48,85 34,78 C20,71 15,55 22,42' stroke='%23b00017' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3Cpath d='M45,30 C55,25 70,32 68,48 C66,64 50,74 36,68 C22,62 20,44 30,32' stroke='rgba(255,255,255,0.3)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    transform: scale(1.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: inline-block;
    background: var(--crimson);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(176, 0, 23, 0.3);
}

.hero-cta:hover {
    background: #d41a2f;
    transform: translateY(-2px);
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #131617 0%, var(--charcoal) 100%);
}

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

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
    font-size: 0.9rem;
    color: var(--white-muted);
    letter-spacing: 0.05em;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image:hover img {
    border-color: rgba(176, 0, 23, 0.3);
}

.about-image-caption {
    margin-top: 1rem;
    text-align: center;
}

.about-image-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.about-content {
    text-align: right;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white-muted);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--crimson);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(176, 0, 23, 0.3);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--white-muted);
    letter-spacing: 0.05em;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 6rem 2rem 2rem;
    background: linear-gradient(180deg, var(--charcoal) 0%, #131617 100%);
}

.services-container {
    max-width: 1240px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(176, 0, 23, 0.12);
    border: 1px solid rgba(176, 0, 23, 0.3);
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.services-badge span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 0.1em;
}

.services-badge span:last-child {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--white-muted);
    letter-spacing: 0.15em;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.services-subtitle {
    font-size: 0.9rem;
    color: rgba(176, 0, 23, 0.8);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.services-grid-second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 60%;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    perspective: 1000px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: rgba(176, 0, 23, 0.5);
    box-shadow: 0 0 20px rgba(176, 0, 23, 0.15);
}

.service-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.service-card.flipped .service-inner {
    transform: rotateY(180deg);
}

.service-front, .service-back {
    position: relative;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.service-front {
    transition: all 0.3s ease;
}

.service-card:hover .service-front:not(.flipped) .service-image img {
    transform: scale(1.05);
}

.service-card:hover .service-front:not(.flipped) .service-name {
    color: var(--crimson);
}

.service-card:hover .service-front:not(.flipped) .service-desc {
    color: var(--white);
}

.service-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(27, 31, 32, 0.98) 0%, rgba(18, 21, 22, 0.98) 100%);
    border: 1px solid rgba(176, 0, 23, 0.4);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--white-muted);
    transition: all 0.3s ease;
}

.service-card:hover .service-back {
    border-color: rgba(176, 0, 23, 0.6);
    box-shadow: inset 0 0 20px rgba(176, 0, 23, 0.05);
}

.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 1.25rem 1rem 0.5rem;
    color: var(--white);
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.service-desc {
    font-size: 0.75rem;
    color: var(--crimson);
    text-align: center;
    padding: 0 1rem 1.5rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.ai-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, transparent, rgba(176, 0, 23, 0.08), transparent);
    border-top: 1px solid rgba(176, 0, 23, 0.2);
    border-bottom: 1px solid rgba(176, 0, 23, 0.2);
}

.ai-icon {
    color: var(--crimson);
    font-size: 0.7rem;
    opacity: 0.7;
}

.ai-badge span:not(.ai-icon) {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white-muted);
    letter-spacing: 0.1em;
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #131617 0%, var(--charcoal) 100%);
}

.why-us-container {
    max-width: 1240px;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.why-us-subtitle {
    font-size: 0.9rem;
    color: var(--white-muted);
    letter-spacing: 0.05em;
    font-weight: 400;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(176, 0, 23, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(176, 0, 23, 0.2);
}

.why-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-card:hover .why-image img {
    transform: scale(1.08);
}

.why-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
    color: var(--white);
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.why-card:hover .why-name {
    color: var(--crimson);
}

.why-desc {
    font-size: 0.85rem;
    color: var(--white-muted);
    line-height: 1.6;
    padding: 0 1.5rem 1.8rem;
    transition: color 0.3s ease;
}

.why-card:hover .why-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--charcoal) 0%, #0a0c0d 100%);
}

.portfolio-container {
    max-width: 1240px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.portfolio-subtitle {
    font-size: 0.9rem;
    color: var(--white-muted);
    letter-spacing: 0.05em;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(176, 0, 23, 0.85) 0%, rgba(27, 31, 32, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0c0d 0%, var(--charcoal) 100%);
}

.testimonials-container {
    max-width: 1240px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.testimonials-subtitle {
    font-size: 0.9rem;
    color: var(--white-muted);
    letter-spacing: 0.05em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(176, 0, 23, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 4rem;
    font-weight: 800;
    color: var(--crimson);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-author p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--charcoal) 0%, #0a0c0d 100%);
}

.contact-container {
    max-width: 1240px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    font-size: 0.9rem;
    color: var(--white-muted);
    letter-spacing: 0.05em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(176, 0, 23, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.contact-icon {
    font-size: 2rem;
    color: var(--crimson);
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.contact-card a {
    font-size: 0.9rem;
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--crimson);
}

.contact-social {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    text-align: center;
}

.contact-social h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-link:hover {
    color: var(--crimson);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--crimson);
    background: rgba(255, 255, 255, 0.08);
}

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

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--crimson);
    border: none;
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d41a2f;
    transform: translateY(-2px);
}

.form-group input[type="tel"],
.form-group input[type="email"] {
    direction: ltr;
    text-align: left;
}

.form-group input[type="tel"]::placeholder,
.form-group input[type="email"]::placeholder {
    direction: rtl;
    text-align: right;
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0c0d 0%, var(--charcoal) 100%);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.faq-subtitle {
    font-size: 0.9rem;
    color: var(--white-muted);
    letter-spacing: 0.05em;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(176, 0, 23, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.faq-question:hover h3 {
    color: var(--crimson);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--white-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--crimson);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--white-muted);
    margin: 0;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #0f1112;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    opacity: 0.3;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: start;
}

.footer-brand {
    text-align: right;
    max-width: 350px;
}

.footer-logo-icon {
    height: 104px;
    width: auto;
    opacity: 0.92;
    transform: scale(1.2);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--white-muted);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--crimson);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: contents;
}

.footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 28px;
    height: 1px;
    background: var(--crimson);
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--white-muted);
    transition: color 0.2s, padding-right 0.2s;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--white);
    padding-right: 0.5rem;
    border-right: 1px solid var(--crimson);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 2rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.legal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legal-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.legal-links a:hover {
    color: var(--crimson);
}

.dev-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

.dev-credit span {
    color: rgba(255, 255, 255, 0.35);
}

.dev-credit a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-credit a:hover {
    color: var(--crimson);
}

.dev-credit img {
    height: 16px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.dev-credit a:hover img {
    opacity: 1;
}

/* ========== FORM ROW ========== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ========== BURGER MENU ========== */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b859;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {
    .services-grid-second {
        max-width: 80%;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 280px;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-accent {
        display: none;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .burger {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0f1112;
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 80px 0 0 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav .nav-list {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        margin: 0;
        gap: 20px;
    }
    
    .main-nav .nav-list li {
        width: 100%;
        list-style: none;
    }
    
    .main-nav .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
        color: var(--white);
        text-decoration: none;
    }
    
    .hero-image {
        object-position: center 80%;
    }
    
    .hero-container {
        padding: 3rem 1.5rem 6rem 1.5rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-right: 0;
        text-align: center;
    }
    
    .ribbon-symbol {
        margin-left: auto;
        margin-right: auto;
        transform: scale(1.2);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .about {
        padding: 4rem 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .services {
        padding: 4rem 1.5rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 0.75rem;
    }
    
    .services-badge {
        padding: 0.4rem 1.2rem;
    }
    
    .services-badge span:first-child {
        font-size: 0.65rem;
    }
    
    .services-badge span:last-child {
        font-size: 0.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid-second {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-back {
        font-size: 0.85rem;
        padding: 1.5rem;
    }
    
    .ai-badge span:not(.ai-icon) {
        font-size: 0.65rem;
    }
    
    .why-us {
        padding: 4rem 1.5rem;
    }
    
    .why-us-title {
        font-size: 1.8rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-image {
        height: 200px;
    }
    
    .why-name {
        font-size: 1rem;
    }
    
    .why-desc {
        font-size: 0.8rem;
        padding: 0 1rem 1.5rem;
    }
    
    .portfolio {
        padding: 4rem 1.5rem;
    }
    
    .portfolio-title {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 260px;
    }
    
    .testimonials {
        padding: 4rem 1.5rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card, .contact-social, .contact-form {
        padding: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq {
        padding: 4rem 1.5rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }
    
    .footer-logo-mark {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .footer-logo-icon {
        transform: scale(1);
    }
    
    .footer-tagline {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-col a:hover {
        padding-right: 0;
        border-right: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .dev-credit {
        flex-wrap: wrap;
        margin-top: 0.75rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 20px;
    }
    
    .hero {
        background-image: none;
    }
    
    .hero-image {
        content: url('/assets/mobile-hero.webp');
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        padding: 1rem 1.8rem;
        font-size: 1.2rem;
        width: 100%;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .brand-logo {
        height: 34px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-back {
        font-size: 0.75rem;
        padding: 1rem;
    }
    
    .ai-badge {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .ai-badge span:not(.ai-icon) {
        font-size: 0.55rem;
    }
    
    .why-us-title {
        font-size: 1.5rem;
    }
    
    .why-image {
        height: 180px;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.75rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-card a {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 0.75rem;
    }
    
    .form-group input, .form-group textarea {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .submit-btn {
        padding: 0.75rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 0.85rem;
    }
}