@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0f0f11;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --accent-gold: #f5b027;
    --accent-gold-hover: #d99a1f;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Strip Colors */
    --strip-1: #f5b027;
    --strip-2: #2ecc71;
    --strip-3: #ffffff;
    --strip-4: #48cae4;
    --strip-5: #ef476f;
    --strip-6: #9d4edd;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

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

.brand-logo {
    max-height: 70px;
    /* Kesin altın sarısı rengi ve şeffaf arka plan için SVG filtresi */
    filter: url('#exact-gold-filter');
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: var(--accent-gold);
}

.nav-item i {
    font-size: 14px;
}

.nav-item.active {
    color: var(--accent-gold);
}

.theme-toggle {
    background: var(--accent-gold);
    width: 60px;
    height: 30px;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border-radius: 50%;
    transition: 0.3s;
}

/* HERO SECTION */
.hero-wrapper {
    display: flex;
    height: calc(100vh - 212px); /* Header (112px) + Strip (100px) */
    position: relative;
    padding: 0 50px;
    align-items: center;
    background-image: url('../images/parla_kurumsal_mockup_v13.png');
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-position 0.5s ease-in-out;
}

/* Yıldız Logosunu Gizleyen CSS Maskesi */
.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom right, rgba(20,20,20,1) 0%, rgba(20,20,20,0) 70%);
    pointer-events: none;
    z-index: 2;
}


.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Soldan sağa kararan ve yazıları netleştiren lüks gradient */
    background: linear-gradient(to right, rgba(15, 15, 17, 0.95) 0%, rgba(15, 15, 17, 0.7) 40%, rgba(15, 15, 17, 0.2) 100%);
    z-index: 1;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}
.nav-arrow:hover {
    color: var(--accent-gold);
}
.nav-arrow.left { left: 20px; }
.nav-arrow.right { right: 70px; /* leaves room for teklif iste */ }

.hero-content {
    flex: 1;
    max-width: 55%;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

.tag-badge {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent-gold);
    display: block;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 90%;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.feature-list li i {
    color: var(--accent-gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-gold {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-gold:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* HERO MOCKUP AREA MOVED TO BACKGROUND */

/* FLOATING TAB (Teklif İste) */
.floating-tab {
    position: fixed;
    right: 0;
    top: calc(50% - 70px);
    transform: translateY(-50%);
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 100;
    box-shadow: -5px 0 15px rgba(245, 176, 39, 0.3);
    transition: padding 0.3s;
    text-align: center;
}

.floating-tab:hover {
    padding-right: 20px;
}

/* FLOATING WHATSAPP TAB */
.floating-wa {
    position: fixed;
    right: 0;
    top: calc(50% + 70px);
    transform: translateY(-50%);
    background: #25d366;
    color: #fff;
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 100;
    box-shadow: -5px 0 15px rgba(37, 211, 102, 0.3);
    transition: padding 0.3s;
    text-decoration: none;
    text-align: center;
}

.floating-wa:hover {
    padding-right: 20px;
    color: #fff;
}

.floating-wa i {
    margin-bottom: 8px; /* İkon ile yazı arasına boşluk */
}

/* BOTTOM STRIP */
.bottom-strip {
    display: flex;
    width: 100%;
    height: 100px;
    position: relative;
}

.strip-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

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

.strip-content {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.strip-title {
    font-size: 16px;
    font-weight: 700;
}

.strip-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

.strip-num {
    font-size: 60px;
    font-weight: 800;
    opacity: 0.2;
    z-index: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.strip-1 { background: var(--strip-1); color: var(--bg-dark); }
.strip-2 { background: var(--strip-2); color: #fff; }
.strip-3 { background: var(--strip-3); color: var(--bg-dark); }
.strip-4 { background: var(--strip-4); color: #fff; }
.strip-5 { background: var(--strip-5); color: #fff; }
.strip-6 { background: var(--strip-6); color: #fff; }

.strip-item.strip-1 {
    border-top-right-radius: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
}
@media (max-width: 992px) {
    .hero-wrapper { flex-direction: column; }
    .hero-content { max-width: 100%; padding: 40px 0; }
    .bottom-strip { flex-wrap: wrap; height: auto; position: relative; }
    .strip-item { flex: 1 1 33.33%; height: 80px; }
}

/* ==================== FOOTER STYLES ==================== */
.footer {
    background-color: #121418;
    color: #b0b5c1;
    font-size: 14px;
    padding-top: 60px;
    margin-top: 80px;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 500;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}
.about-text {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 13px;
}
.google-partner-box {
    background-color: #fff;
    border-radius: 4px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    color: #333;
    font-weight: 600;
    font-size: 12px;
    margin-top: 10px;
}
.google-partner-box .gp-icon {
    font-size: 24px;
    color: #4285F4;
    margin-bottom: 5px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #b0b5c1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    font-size: 13px;
}
.footer-links a i {
    font-size: 10px;
    margin-right: 8px;
    color: #555;
}
.footer-links a:hover {
    color: var(--accent-gold);
}
.footer-links a:hover i {
    color: var(--accent-gold);
}
/* Social Blocks */
.social-blocks {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 250px;
}
.social-btn {
    display: flex;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 15px;
    transition: opacity 0.3s;
    font-size: 14px;
}
.social-btn:hover {
    opacity: 0.85;
}
.social-btn .icon {
    width: 25px;
    text-align: center;
    margin-right: 15px;
    font-size: 16px;
}
.social-btn .text {
    flex: 1;
    font-weight: 500;
}
.social-btn .plus {
    font-weight: 300;
    font-size: 18px;
}
.social-btn.instagram { background-color: #e1306c; }
.social-btn.twitter { background-color: #1da1f2; }
.social-btn.facebook { background-color: #3b5998; }
.social-btn.youtube { background-color: #ff0000; }
.social-btn.linkedin { background-color: #0077b5; }

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.05);
    margin: 40px 0;
}
.footer-contact-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}
.contact-item {
    display: flex;
    align-items: center;
}
.contact-item .contact-icon {
    font-size: 32px;
    color: #b0b5c1;
    margin-right: 15px;
}
.contact-item .contact-details {
    display: flex;
    flex-direction: column;
}
.contact-details span {
    font-size: 12px;
    color: #888;
    margin-bottom: 3px;
}
.contact-details strong {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.footer-bottom {
    background-color: #0b0d10;
    padding: 20px 0;
    text-align: center;
}
.bottom-container p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* ========================================= */
/* ILETISIM SAYFASI (CONTACT PAGE) STANDARTLARI */
/* ========================================= */
.contact-page-wrapper { width: 100%; padding-bottom: 0; }
.contact-hero { width: 100%; height: 130px; background-size: cover; background-position: center 30%; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 10px; }
.contact-hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11, 13, 16, 0.85); }
.contact-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 30px; }
.contact-hero-content .page-title { font-size: 1.7rem; font-weight: 700; margin-bottom: 5px; color: #f5b027; }
.contact-hero-content .page-subtitle { font-size: 1.05rem; color: rgba(255, 255, 255, 0.8); line-height: 1.6; }
.contact-container { max-width: 1600px; margin: 10px auto 0; position: relative; z-index: 5; padding: 0 40px; }
.contact-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 0; }
.glass-card { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(245, 176, 39, 0.15); border-radius: 12px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); transition: transform 0.3s ease, border-color 0.3s ease; }
.glass-card:hover { border-color: rgba(245, 176, 39, 0.4); transform: translateY(-5px); }
.info-card { display: flex; flex-direction: row; align-items: center; text-align: left; padding: 20px 25px; gap: 15px; }
.info-card .icon-box { flex-shrink: 0; width: 50px; height: 50px; background: rgba(245, 176, 39, 0.05); border: 1px solid rgba(245, 176, 39, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent-gold); margin-bottom: 0; }
.info-card .info-details h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.info-card .info-details p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; margin: 0; }
.contact-form-col { padding: 25px 30px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-col h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.contact-form-col p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 20px; line-height: 1.5; }
.parla-form .form-group { margin-bottom: 15px; }
.parla-form label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #f5b027 !important; margin-bottom: 6px; font-weight: 700; }
.parla-form .form-input { width: 100%; background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; padding: 12px 15px; color: #fff; font-size: 0.95rem; transition: all 0.3s ease; font-family: inherit; }
.parla-form .form-input:focus { outline: none; border-color: var(--accent-gold); background: rgba(0, 0, 0, 0.5); box-shadow: 0 0 15px rgba(245, 176, 39, 0.1); }
.parla-form select.form-input { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5b027' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }
.parla-form select.form-input option { background-color: #0b0d10; color: #ffffff; padding: 10px; }
.map-container { position: relative; width: 100%; height: 100%; border-radius: 12px; overflow: hidden; border: 1px solid rgba(245, 176, 39, 0.15); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; }
.map-container iframe { flex: 1; display: block; width: 100%; border-radius: 8px; filter: invert(90%) hue-rotate(180deg) saturate(1.5) contrast(0.9); }

/* PACKAGES SECTION */
.packages-section { background-color: #fcfcfc; color: #2d3748; padding: 100px 5%; font-family: inherit; }
.packages-container { max-width: 1400px; margin: 0 auto; }
.packages-header { display: flex; justify-content: space-between; align-items: center; gap: 80px; margin-bottom: 70px; }
.packages-title { flex: 1.2; font-size: 2.6rem; font-weight: 800; line-height: 1.2; color: #1a202c; letter-spacing: -0.5px; }
.packages-subtitle { flex: 0.8; font-size: 1.15rem; line-height: 1.6; color: #718096; font-weight: 400; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.package-card { background: #ffffff; padding: 50px 40px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.03); }
.package-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.package-icon { width: 65px; height: 65px; background: rgba(245, 176, 39, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent-gold); margin-bottom: 30px; }
.package-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; color: #1a202c; }
.package-card p { font-size: 1rem; line-height: 1.6; color: #a0aec0; }

/* --- PARLA CRM WORLD-CLASS LAYOUT --- */
.crm-worldclass-wrapper { background: #000000; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* 1. WC Hero (Homepage Slider Logic) */
.wc-hero { min-height: 90vh; display: flex; align-items: center; position: relative; padding: 0 5%; background-image: url('../images/parla_crm_mockup_final.png'); background-size: cover; background-position: center center; background-repeat: no-repeat; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wc-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.2) 100%); z-index: 1; }
.wc-hero-content { flex: 1; max-width: 60%; position: relative; z-index: 2; text-align: left; padding-top: 50px; }
.wc-badge { display: inline-block; padding: 8px 25px; border: 1px solid rgba(245, 176, 39, 0.4); border-radius: 50px; font-size: 0.9rem; font-weight: 800; letter-spacing: 4px; color: var(--accent-gold); margin-bottom: 30px; text-transform: uppercase; }
.wc-title-massive { font-size: 5rem; font-weight: 900; line-height: 1.1; letter-spacing: -2px; margin-bottom: 30px; }
.wc-title-massive span { background: linear-gradient(135deg, #fff 20%, var(--accent-gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.wc-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 650px; margin-bottom: 30px; font-weight: 400; }

.wc-hero-features { list-style: none; margin: 0 0 40px 0; padding: 0; }
.wc-hero-features li { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-weight: 500; }
.wc-hero-features li i { color: var(--accent-gold); background: rgba(245, 176, 39, 0.15); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }

.wc-hero-actions { display: flex; gap: 20px; justify-content: flex-start; }
.wc-btn-outline { display: inline-block; padding: 20px 40px; font-size: 1.2rem; font-weight: 800; border-radius: 100px; text-decoration: none; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.2); color: #fff; }
.wc-btn-outline:hover { border-color: var(--accent-gold); background: rgba(245, 176, 39, 0.1); color: var(--accent-gold); transform: translateY(-3px); }

@media (max-width: 1024px) {
    .wc-hero::before { background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 60%, rgba(0, 0, 0, 0.4) 100%); }
    .wc-hero-content { max-width: 100%; text-align: center; padding-top: 250px; }
    .wc-hero-features li { justify-content: center; }
    .wc-hero-actions { justify-content: center; }
}

/* 2. Marquee */
.wc-marquee { width: 100%; overflow: hidden; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 25px 0; display: flex; white-space: nowrap; }
.wc-marquee-track { display: inline-flex; align-items: center; animation: marquee-scroll 30s linear infinite; }
.wc-marquee-track span { font-size: 1.1rem; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 10px; margin: 0 40px; }
.wc-marquee-track span.dot { color: var(--accent-gold); margin: 0; font-size: 1.5rem; }
.wc-marquee-track span i { color: var(--accent-gold); }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 3. Sticky Scroll Sections */
.wc-sticky-section { padding: 100px 0; background: #000000; position: relative; }
.wc-sticky-section.dark-bg { background: #030406; border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); }
.wc-sticky-container { max-width: 1400px; margin: 0 auto; display: flex; gap: 80px; padding: 0 5%; align-items: center; }
.wc-sticky-container.reverse-layout { flex-direction: row-reverse; }

/* Sticky Visual */
.wc-sticky-visual { flex: 1; position: relative; }
.wc-visual-inner { position: relative; border-radius: 24px; perspective: 1000px; width: 100%; }
.wc-main-img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.8); }
.wc-main-img.shadow-green { border-color: rgba(16, 185, 129, 0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(16, 185, 129, 0.05); }

/* Floating Micro Cards */
.wc-micro-card { position: absolute; background: rgba(10, 12, 19, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); padding: 15px 20px; border-radius: 12px; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.5); z-index: 10; animation: float-anim 6s ease-in-out infinite; min-width: 200px; }
.wc-micro-card i { font-size: 1.5rem; }
.text-green { color: #10b981; }
.text-gold { color: var(--accent-gold); }
.wc-micro-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.wc-micro-card p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* Card Positions */
.mc-1 { top: 15%; right: -40px; animation-delay: 0s; }
.mc-2 { bottom: 20%; left: -50px; animation-delay: 2s; }
.mc-3 { top: 20%; left: -40px; animation-delay: 1s; }
.mc-4 { bottom: 15%; right: -30px; animation-delay: 3s; }

@keyframes float-anim { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* Scrolling Text Content */
.wc-scroll-content { flex: 1; padding: 40px 0; }
.wc-sc-eyebrow { font-size: 0.95rem; font-weight: 800; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 20px; display: block; }
.wc-sc-eyebrow.color-green { color: #10b981; }
.wc-sc-title { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.wc-sc-title span { color: var(--accent-gold); }
.wc-sc-title span.color-green { color: #10b981; }
.wc-sc-desc { font-size: 1.2rem; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 50px; }

/* Feature Blocks */
.wc-feature-blocks { display: flex; flex-direction: column; gap: 35px; }
.wc-fb-item { border-left: 3px solid rgba(245, 176, 39, 0.2); padding-left: 25px; transition: border-color 0.3s; }
.wc-fb-item:hover { border-left-color: var(--accent-gold); }
.wc-fb-item.green-border { border-left-color: rgba(16, 185, 129, 0.2); }
.wc-fb-item.green-border:hover { border-left-color: #10b981; }
.wc-fb-item h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.wc-fb-item h3.color-green { color: #fff; }
.wc-fb-item h3 i { color: var(--accent-gold); font-size: 1.3rem; }
.wc-fb-item h3.color-green i { color: #10b981; }
.wc-fb-item p { font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

/* 4. Dev Rakamlar (Stats) */
.wc-stats-section { padding: 120px 5%; background: #000; border-top: 1px solid rgba(255,255,255,0.03); }
.wc-stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.wc-stat-num { font-size: 6rem; font-weight: 900; color: var(--accent-gold); line-height: 1; margin-bottom: 10px; letter-spacing: -2px; }
.wc-stat-lbl { font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; }

/* 5. Matrix Table */
.wc-matrix-section { padding: 150px 5%; background: #050505; }
.wc-matrix-title { text-align: center; font-size: 4rem; font-weight: 900; margin-bottom: 80px; letter-spacing: -1px; }
.wc-matrix-wrapper { max-width: 1100px; margin: 0 auto; overflow-x: auto; }
.wc-matrix { width: 100%; border-collapse: collapse; }
.wc-matrix th, .wc-matrix td { padding: 30px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wc-matrix th { font-size: 1.4rem; font-weight: 800; color: #fff; border-bottom: 2px solid rgba(255,255,255,0.1); }
.wc-col-feat { width: 35%; color: rgba(255,255,255,0.8); font-size: 1.2rem; font-weight: 600; }
.wc-col-bad { width: 30%; color: rgba(255,255,255,0.4); font-size: 1.1rem; }
.wc-col-bad i { color: #ff5f56; margin-right: 15px; }
.wc-col-good { width: 35%; color: #fff; font-size: 1.1rem; background: rgba(245, 176, 39, 0.02); }
.wc-matrix th.wc-col-good { color: var(--accent-gold); border-bottom-color: var(--accent-gold); background: rgba(245, 176, 39, 0.05); }
.wc-col-good i { color: var(--accent-gold); margin-right: 15px; }

/* 6. CTA */
.wc-cta-section { padding: 150px 20px; text-align: center; background: radial-gradient(circle at 50% 100%, rgba(245, 176, 39, 0.1) 0%, #000 60%); }
.wc-cta-title { font-size: 5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px; }
.wc-cta-desc { font-size: 1.3rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 50px; line-height: 1.6; }
.wc-btn-gold { display: inline-block; background: var(--accent-gold); color: #000; padding: 20px 50px; font-size: 1.2rem; font-weight: 900; border-radius: 100px; text-decoration: none; transition: transform 0.3s; }
.wc-btn-gold:hover { transform: translateY(-3px); }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .wc-title-massive { font-size: 3.5rem; }
    .wc-sticky-container, .wc-sticky-container.reverse-layout { flex-direction: column; gap: 50px; }
    .wc-sticky-visual { position: relative; top: 0; width: 100%; }
    .wc-scroll-content { padding: 20px 0 50px; }
    .wc-micro-card { display: none; /* Hide micro cards on mobile for clean look */ }
    .wc-stats-grid { grid-template-columns: 1fr; gap: 60px; }
    .wc-matrix-title, .wc-cta-title { font-size: 3rem; }
}
.pkg-dots { display: flex; justify-content: center; gap: 12px; margin-top: 50px; }
.pkg-dot { width: 12px; height: 12px; border-radius: 50%; background: #e2e8f0; cursor: pointer; transition: all 0.3s ease; }
.pkg-dot:hover { background: #cbd5e0; }
.pkg-dot.active { background: var(--accent-gold); transform: scale(1.4); }
@media (max-width: 1024px) { .packages-header { flex-direction: column; text-align: center; gap: 20px; } .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .packages-grid { grid-template-columns: 1fr; } .packages-title { font-size: 2rem; } }

/* ECOSYSTEM SECTION */
.ecosystem-section { background-color: var(--accent-gold); color: var(--bg-dark); padding: 100px 5%; font-family: inherit; }
.ecosystem-container { max-width: 1700px; margin: 0 auto; }
.ecosystem-title { text-align: center; font-size: 3.5rem; font-weight: 900; line-height: 1.05; margin-bottom: 25px; text-transform: uppercase; letter-spacing: -1px; }
.ecosystem-subtitle { text-align: center; font-size: 1.15rem; font-weight: 600; max-width: 1000px; margin: 0 auto 70px; line-height: 1.5; color: rgba(11, 13, 16, 0.85); }
.ecosystem-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.eco-card { padding: 0 30px; border-right: 1px solid rgba(11, 13, 16, 0.15); }
.eco-card:first-child { padding-left: 0; }
.eco-card:last-child { border-right: none; padding-right: 0; }
.eco-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; color: var(--bg-dark); }
.eco-card p { font-size: 0.95rem; line-height: 1.6; font-weight: 500; color: rgba(11, 13, 16, 0.8); margin: 0; }
@media (max-width: 1024px) { .ecosystem-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; } .eco-card { border-right: none; padding: 0 20px !important; } .eco-card:nth-child(odd) { border-right: 1px solid rgba(11, 13, 16, 0.15); } .ecosystem-title { font-size: 2.8rem; } }
@media (max-width: 768px) { .ecosystem-grid { grid-template-columns: 1fr; gap: 30px; } .eco-card { border-right: none !important; padding: 0 !important; text-align: center; } .ecosystem-title { font-size: 2.2rem; } }

/* TESTIMONIAL SECTION */
.testimonial-section { background: #ffffff; padding: 120px 5%; font-family: inherit; }
.testimonial-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.testimonial-left { flex: 1; max-width: 650px; }
.testi-title { font-size: 3.6rem; font-weight: 800; line-height: 1.1; color: #1a202c; margin-bottom: 30px; text-transform: uppercase; letter-spacing: -1px; }
.testi-title span { color: var(--accent-gold); }
.testi-desc { font-size: 1.15rem; line-height: 1.7; color: #4a5568; font-weight: 400; margin-bottom: 50px; max-width: 500px; }
.btn-circle-outline { display: inline-flex; align-items: center; justify-content: center; width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); color: #1a202c; text-decoration: none; font-weight: 700; font-size: 0.9rem; text-align: left; line-height: 1.4; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; padding-left: 10px; background: transparent; }
.btn-circle-outline:hover { background: var(--accent-gold); color: var(--bg-dark); transform: scale(1.05); border-color: var(--accent-gold); box-shadow: 0 10px 30px rgba(245, 176, 39, 0.2); }

.testimonial-right { flex: 1; display: flex; justify-content: flex-end; }
.testi-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.03); border-radius: 20px; width: 100%; max-width: 500px; display: flex; flex-direction: column; position: relative; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05); }
.testi-rating { padding: 40px 40px 0; display: flex; flex-direction: column; }
.testi-rating strong { font-size: 2.5rem; font-weight: 800; color: #1a202c; display: flex; align-items: center; gap: 10px; line-height: 1; }
.testi-rating strong i { font-size: 1.4rem; color: var(--accent-gold); }
.testi-rating span { font-size: 0.9rem; color: #a0aec0; margin-top: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.testi-quote { padding: 30px 40px 40px; font-size: 1.15rem; line-height: 1.8; color: #2d3748; font-weight: 400; font-style: italic; }
.testi-quote-icon { position: absolute; right: 40px; bottom: 100px; font-size: 4rem; color: rgba(245, 176, 39, 0.15); line-height: 1; z-index: 0; pointer-events: none; }
.testi-author { background: transparent; border-top: 1px solid rgba(0,0,0,0.05); color: #1a202c; padding: 25px 40px; font-size: 1rem; font-weight: 700; margin-top: auto; display: flex; align-items: center; gap: 10px; border-radius: 0 0 20px 20px; }
.testi-author::before { content: ''; display: block; width: 25px; height: 3px; background: var(--accent-gold); border-radius: 2px; }

@media (max-width: 1024px) {
    .testimonial-container { flex-direction: column; }
    .testimonial-left { max-width: 100%; text-align: center; margin-bottom: 50px; }
    .testi-desc { margin: 0 auto 50px; }
    .btn-circle-outline { margin: 0 auto; text-align: center; padding-left: 0; }
    .btn-circle-outline span:last-child { display: none; }
    .testimonial-right { justify-content: center; width: 100%; }
}
@media (max-width: 768px) {
    .testi-title { font-size: 2.5rem; }
    .testi-card { max-width: 100%; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
    .testi-quote { padding: 20px 30px 30px; font-size: 1rem; }
    .testi-rating { padding: 30px 30px 0; }
    .testi-author { padding: 20px 30px; }
}

/* MARKA OYKULERI (STORIES) - CINEMATIC VISUAL SHOW */
body.stories-page { background: #080a0f; color: #fff; overflow-x: hidden; }

/* Cinematic Hero */
.stories-hero { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 5% 100px; overflow: hidden; }
.stories-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(245, 176, 39, 0.05) 0%, #080a0f 70%); pointer-events: none; }
.stories-hero-container { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.hero-glow-line { width: 2px; height: 150px; background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent); margin: 0 auto 30px; animation: pulseGlow 3s infinite; }
.stories-hero .page-title { font-size: 5rem; font-weight: 900; line-height: 1.1; margin-bottom: 30px; text-transform: uppercase; letter-spacing: -2px; opacity: 0; transform: translateY(30px); animation: fadeInUp 1s forwards 0.5s; }
.stories-hero .page-title span { background: linear-gradient(45deg, var(--accent-gold), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stories-hero .page-subtitle { font-size: 1.3rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; opacity: 0; transform: translateY(30px); animation: fadeInUp 1s forwards 0.8s; max-width: 800px; margin: 0 auto; }

/* Connecting Path */
.story-path-line { position: absolute; left: 50%; width: 2px; height: 100%; background: rgba(255,255,255,0.03); z-index: 0; transform: translateX(-50%); }
.story-path-glow { position: absolute; top: 0; left: -1px; width: 4px; height: 150px; background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent); box-shadow: 0 0 20px var(--accent-gold); animation: dropGlow 6s infinite linear; }

/* Case Studies Section */
.case-studies-section { position: relative; padding: 100px 5% 150px; z-index: 1; }
.case-studies-container { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; gap: 180px; position: relative; }

/* --- FLASHLIGHT REVEAL (OPTION 2) --- */
body.dark-mode-forced { background-color: #000 !important; color: #fff !important; margin: 0; overflow-x: hidden; }

.flashlight-wrapper { position: relative; min-height: 100vh; background: #000; overflow: hidden; cursor: none; }

/* The Hint Text (Deep Background) */
.flashlight-hint { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 0; opacity: 0.2; pointer-events: none; }
.hint-title { font-size: 8vw; font-weight: 900; line-height: 1; margin: 0; color: #fff; text-transform: uppercase; letter-spacing: -2px; }
.hint-sub { font-size: 1.5rem; color: var(--accent-gold); font-weight: 300; margin-top: 20px; }

/* The Content Layer (Masked) */
.flashlight-content { position: relative; z-index: 2; padding: 100px 5%; min-height: 100vh; background: #080a0f; /* Base color of the revealed area */ -webkit-mask-image: radial-gradient(circle 350px at 50% 50%, black 0%, transparent 100%); mask-image: radial-gradient(circle 350px at 50% 50%, black 0%, transparent 100%); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }

/* Grid of Projects inside the revealed area */
.flashlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; max-width: 1400px; margin: 0 auto; }

.flashlight-item { position: relative; height: 500px; border-radius: 30px; overflow: hidden; display: block; text-decoration: none; border: 1px solid rgba(255,255,255,0.1); cursor: none; }
.f-item-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s; filter: grayscale(50%) brightness(0.6); }
.flashlight-item:hover .f-item-img { transform: scale(1.05); filter: grayscale(0%) brightness(1); }

.f-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; transition: background 0.4s; }
.flashlight-item:hover .f-item-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, var(--item-color) 100%); opacity: 0.9; mix-blend-mode: multiply; }

.f-item-tag { display: inline-block; padding: 8px 20px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: #fff; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; border-radius: 50px; margin-bottom: 15px; align-self: flex-start; }
.f-item-title { font-size: 3rem; font-weight: 900; color: #fff; margin: 0 0 20px 0; line-height: 1.1; letter-spacing: -1px; z-index: 2; position: relative; }
.f-item-btn { display: inline-flex; align-items: center; gap: 10px; color: var(--accent-gold); font-weight: 700; font-size: 1.2rem; opacity: 0; transform: translateY(20px); transition: all 0.4s; z-index: 2; position: relative; }
.flashlight-item:hover .f-item-btn { opacity: 1; transform: translateY(0); color: #fff; }

/* Revealed CTA */
.flashlight-cta { text-align: center; margin-top: 150px; padding-bottom: 100px; }
.flashlight-cta h2 { font-size: 4rem; font-weight: 900; color: #fff; margin-bottom: 40px; }
.f-cta-btn { display: inline-block; padding: 20px 60px; background: var(--accent-gold); color: #000; font-weight: 800; font-size: 1.5rem; border-radius: 100px; text-decoration: none; cursor: none; transition: transform 0.3s; }
.f-cta-btn:hover { transform: scale(1.05); }

/* The Glowing Cursor Core */
.flashlight-cursor { position: fixed; top: 0; left: 0; width: 20px; height: 20px; background: rgba(255,255,255,0.8); border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); z-index: 9999; box-shadow: 0 0 40px 20px rgba(255,255,255,0.2); mix-blend-mode: screen; transition: width 0.2s, height 0.2s; }
a:hover ~ .flashlight-cursor, button:hover ~ .flashlight-cursor { width: 40px; height: 40px; background: var(--accent-gold); box-shadow: 0 0 40px 20px rgba(245, 176, 39, 0.4); }

@media (max-width: 768px) {
    .flashlight-content { -webkit-mask-image: none !important; mask-image: none !important; background: #080a0f; }
    .flashlight-cursor { display: none; }
    body.dark-mode-forced { cursor: auto; }
    .flashlight-item { cursor: pointer; }
    .f-item-btn { opacity: 1; transform: translateY(0); }
    .hint-title { font-size: 3rem; }
}

/* V2 Detail Page */
.sv2-detail-container { background: #080a0f; min-height: 100vh; font-family: 'Inter', sans-serif; color: #fff; }

/* V2 Detail Hero */
.sv2-detail-hero { height: 90vh; position: relative; background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: flex-end; padding: 100px 5%; }
.sv2-detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #080a0f 0%, rgba(8,10,15,0.7) 40%, rgba(8,10,15,0.3) 100%); z-index: 1; }
.sv2-detail-hero-content { position: relative; z-index: 2; max-width: 1200px; width: 100%; }

.sv2-back-btn { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 50px; transition: color 0.3s; }
.sv2-back-btn:hover { color: #fff; }

.sv2-detail-badge { display: inline-block; padding: 8px 20px; background: var(--brand-color); color: #fff; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.sv2-detail-title { font-size: 5vw; font-weight: 900; line-height: 1; margin: 0 0 10px; letter-spacing: -2px; }
.sv2-detail-subtitle { font-size: 1.5rem; font-weight: 300; color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.sv2-detail-rating { display: inline-flex; align-items: center; gap: 15px; padding: 15px 30px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 100px; border: 1px solid rgba(255,255,255,0.2); }
.sv2-detail-rating .score { font-size: 1.5rem; font-weight: 800; color: #fff; }
.sv2-detail-rating .stars i { color: var(--accent-gold); margin-right: 2px; font-size: 1.1rem; }

/* V2 Story Content */
.sv2-story-content { padding: 100px 5%; background: #080a0f; position: relative; z-index: 2; }
.sv2-story-wrapper { max-width: 900px; margin: 0 auto; }

.sv2-block { margin-bottom: 80px; }
.sv2-block-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 30px; letter-spacing: -1px; }
.sv2-block-text { font-size: 1.25rem; line-height: 1.8; color: rgba(255,255,255,0.7); font-weight: 300; }

.sv2-challenge { display: flex; gap: 40px; background: rgba(255,255,255,0.02); padding: 50px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.05); }
.sv2-block-icon { font-size: 3rem; color: var(--brand-color); opacity: 0.8; }
.sv2-block-body { flex: 1; }

.sv2-solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.sv2-solution-card { background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.sv2-solution-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--brand-color); }
.solution-check { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; color: var(--brand-color); margin-bottom: 20px; font-size: 1.2rem; }
.sv2-solution-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; color: #fff; }
.sv2-solution-card p { font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.6); }

.sv2-testimonial { margin-top: 100px; text-align: center; padding: 80px 40px; position: relative; }
.sv2-quote-icon { font-size: 6rem; color: var(--brand-color); opacity: 0.1; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 0; }
.sv2-quote-text { font-size: 2rem; font-weight: 500; line-height: 1.5; color: #fff; font-style: italic; margin-bottom: 40px; position: relative; z-index: 1; }
.sv2-quote-author { font-size: 1.2rem; font-weight: 800; color: var(--brand-color); text-transform: uppercase; letter-spacing: 2px; }

/* V2 Next CTA */
.sv2-next-cta { padding: 120px 5%; text-align: center; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.05); }
.sv2-next-cta h2 { font-size: 4rem; font-weight: 900; margin-bottom: 50px; line-height: 1.1; letter-spacing: -2px; }
.sv2-btn-solid { display: inline-block; padding: 20px 50px; color: #fff; text-decoration: none; font-weight: 700; font-size: 1.2rem; border-radius: 100px; transition: transform 0.3s, filter 0.3s; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.sv2-btn-solid:hover { transform: translateY(-5px); filter: brightness(1.2); }

@media (max-width: 1024px) {
    .sv2-detail-title { font-size: 4rem; }
    .sv2-solutions-grid { grid-template-columns: 1fr; }
    .sv2-challenge { flex-direction: column; gap: 20px; padding: 30px; }
    .sv2-quote-text { font-size: 1.5rem; }
}

/* --- ABOUT US (BIZI TANIYIN) --- */
.about-container { background: #080a0f; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* About Hero */
.about-hero { min-height: 60vh; padding: 200px 5% 100px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; }
.a-hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(245, 176, 39, 0.08) 0%, transparent 60%); z-index: 0; pointer-events: none; }
.a-hero-content { position: relative; z-index: 1; max-width: 1000px; }
.a-badge { display: inline-block; padding: 6px 20px; border: 1px solid rgba(245, 176, 39, 0.4); border-radius: 50px; font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 30px; color: var(--accent-gold); text-transform: uppercase; }
.a-title { font-size: 4.5rem; font-weight: 300; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1.5px; }
.a-title span { font-weight: 900; color: #fff; }
.a-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; max-width: 800px; margin: 0 auto; }
.a-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); height: 60px; width: 1px; background: rgba(255,255,255,0.1); overflow: hidden; }
.a-scroll-line { width: 100%; height: 50%; background: var(--accent-gold); animation: aScrollDown 2s infinite ease-in-out; }
@keyframes aScrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* About Bento Grid */
.about-philosophy { padding: 150px 5%; background: #080a0f; position: relative; z-index: 2; }
.a-bento-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.a-bento-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; padding: 50px; display: flex; flex-direction: column; transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.a-bento-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--box-color); opacity: 0.5; transition: opacity 0.4s; }
.a-bento-box:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.a-bento-box:hover::before { opacity: 1; }
.a-bento-large { grid-column: span 2; }
.a-bento-medium { grid-column: span 1; }

.a-bento-icon { font-size: 2.5rem; color: var(--box-color); margin-bottom: 30px; }
.a-bento-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; color: #fff; }
.a-bento-box p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; }

/* About Stats */
.about-stats { padding: 100px 5%; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.01); }
.a-stats-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.a-stat-item { flex: 1; min-width: 200px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.a-stat-number { font-size: 5rem; font-weight: 900; color: #fff; line-height: 1; display: inline-block; }
.a-stat-plus { font-size: 3rem; font-weight: 900; color: var(--accent-gold); display: inline-block; vertical-align: top; margin-left: 5px; }
.a-stat-label { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-top: 15px; font-weight: 700; }

/* About Culture */
.about-culture { padding: 150px 5%; background: #080a0f; }
.a-culture-container { max-width: 1400px; margin: 0 auto; }
.a-culture-container h2 { font-size: 4rem; font-weight: 900; text-align: center; margin-bottom: 80px; letter-spacing: -1px; }
.a-culture-container h2 span { color: var(--accent-gold); font-style: italic; }
.a-culture-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.a-culture-card { text-align: center; padding: 40px; }
.a-culture-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; color: #fff; }
.a-culture-card p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* About CTA */
.about-cta { padding: 150px 5%; text-align: center; background: radial-gradient(circle at center, rgba(245, 176, 39, 0.1) 0%, #080a0f 60%); }
.a-cta-content h2 { font-size: 4vw; font-weight: 900; margin-bottom: 50px; line-height: 1.1; letter-spacing: -2px; }
.a-btn { display: inline-flex; align-items: center; gap: 15px; padding: 20px 50px; background: var(--accent-gold); color: #000; text-decoration: none; font-weight: 800; font-size: 1.2rem; border-radius: 100px; transition: transform 0.3s; }
.a-btn:hover { transform: translateY(-5px); }

@media (max-width: 1024px) {
    .a-bento-grid { grid-template-columns: 1fr; }
    .a-bento-large, .a-bento-medium { grid-column: span 1; }
    .a-title { font-size: 3.5rem; }
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { 0% { opacity: 0.3; height: 50px; } 50% { opacity: 1; height: 150px; } 100% { opacity: 0.3; height: 50px; } }

/* Header Dropdown Menu */
.nav-item-dropdown { position: relative; display: inline-block; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: rgba(8, 10, 15, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; min-width: 260px; padding: 15px 0; box-shadow: 0 20px 40px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); z-index: 100; margin-top: 20px; }
.dropdown-menu::before { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; } /* Invisible hover bridge */
.nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); text-decoration: none; padding: 12px 25px; font-size: 0.95rem; font-weight: 500; transition: all 0.3s; }
.dropdown-menu a i { color: var(--accent-gold); font-size: 1.1rem; width: 20px; text-align: center; opacity: 0.7; transition: opacity 0.3s; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; padding-left: 30px; }
.dropdown-menu a:hover i { opacity: 1; }
@keyframes dropGlow { 0% { top: -20%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 120%; opacity: 0; } }

/* --- CORPORATE IDENTITY PAGE --- */
.service-ci-container { background: #080a0f; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* CI Hero */
.ci-hero { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; padding: 150px 5% 100px; overflow: hidden; }
.ci-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ci-glow { position: absolute; top: 50%; left: 50%; border-radius: 50%; filter: blur(80px); opacity: 0.5; transition: transform 0.1s ease-out; }
.ci-glow-1 { width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(245, 176, 39, 0.15) 0%, transparent 60%); margin-left: -20vw; margin-top: -10vw; }
.ci-glow-2 { width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(10, 50, 150, 0.1) 0%, transparent 60%); margin-left: 10vw; margin-top: 10vw; }
.ci-hero-content { position: relative; z-index: 1; max-width: 1000px; }
.ci-badge { display: inline-block; padding: 6px 20px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 30px; color: rgba(255,255,255,0.7); text-transform: uppercase; background: rgba(255,255,255,0.02); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.ci-title { font-size: 4.5rem; font-weight: 300; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1.5px; }
.ci-title span { font-weight: 900; color: #fff; background: linear-gradient(90deg, #fff, var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ci-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; max-width: 700px; margin: 0 auto; }
.ci-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); height: 60px; width: 1px; background: rgba(255,255,255,0.1); overflow: hidden; }
.ci-scroll-line { width: 100%; height: 50%; background: var(--accent-gold); animation: aScrollDown 2s infinite ease-in-out; }

/* CI Anatomy (Bento Grid) */
.ci-anatomy { padding: 120px 5%; background: #0a0d14; border-top: 1px solid rgba(255,255,255,0.03); }
.ci-section-header { text-align: center; margin-bottom: 80px; }
.ci-section-header h2 { font-size: 3rem; font-weight: 300; letter-spacing: -1px; margin-bottom: 20px; }
.ci-section-header h2 span { font-weight: 900; color: var(--accent-gold); }
.ci-section-header p { font-size: 1.2rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

.ci-anatomy-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.ci-a-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 50px; border-radius: 24px; transition: all 0.4s; position: relative; overflow: hidden; }
.ci-a-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(245, 176, 39, 0.05) 0%, transparent 50%); opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.ci-a-card:hover { transform: translateY(-5px); border-color: rgba(245, 176, 39, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.ci-a-card:hover::before { opacity: 1; }
.ci-a-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 25px; }
.ci-a-card h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; color: #fff; }
.ci-a-card p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; }

/* CI Process */
.ci-process { padding: 150px 5%; background: #080a0f; }
.ci-process-container { max-width: 1000px; margin: 0 auto; }
.ci-process-title { font-size: 4rem; font-weight: 900; margin-bottom: 80px; letter-spacing: -2px; text-align: center; }
.ci-process-title span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.3); }

.ci-step-list { display: flex; flex-direction: column; gap: 40px; position: relative; }
.ci-step-list::before { content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.1); }
.ci-step { display: flex; gap: 40px; align-items: flex-start; position: relative; z-index: 1; }
.ci-step-number { width: 80px; height: 80px; background: #080a0f; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; font-weight: 900; color: var(--accent-gold); flex-shrink: 0; box-shadow: 0 0 0 10px #080a0f; }
.ci-step-content { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.03); padding: 40px; border-radius: 20px; flex: 1; transition: background 0.3s; }
.ci-step-content:hover { background: rgba(255,255,255,0.03); }
.ci-step-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; color: #fff; }
.ci-step-content p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* CI Deliverables */
.ci-deliverables { padding: 150px 5%; background: #0a0d14; border-top: 1px solid rgba(255,255,255,0.03); }
.ci-d-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.ci-d-text { flex: 1; }
.ci-d-text h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.ci-d-text p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.6; }
.ci-d-list { list-style: none; padding: 0; margin: 0; }
.ci-d-list li { font-size: 1.1rem; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; font-weight: 500; }
.ci-d-list li i { color: var(--accent-gold); font-size: 1.2rem; background: rgba(245, 176, 39, 0.1); padding: 10px; border-radius: 50%; }

.ci-d-visual { flex: 1; display: flex; justify-content: center; }
.ci-brand-book-mockup { width: 400px; height: 500px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: flex; flex-direction: column; padding: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
.ci-brand-book-mockup::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: var(--accent-gold); filter: blur(80px); opacity: 0.3; }
.mockup-logo { width: 80px; height: 80px; background: #fff; border-radius: 12px; margin-bottom: auto; display: flex; justify-content: center; align-items: center; color: #000; font-size: 2.5rem; font-weight: 900; }
.mockup-lines .line { height: 8px; background: rgba(255,255,255,0.2); border-radius: 10px; margin-bottom: 15px; }
.mockup-lines .w-100 { width: 100%; }
.mockup-lines .w-75 { width: 75%; }
.mockup-lines .w-50 { width: 50%; }

/* CI CTA */
.ci-cta { padding: 150px 5%; text-align: center; background: radial-gradient(circle at center, rgba(245, 176, 39, 0.08) 0%, #080a0f 60%); }
.ci-cta-content h2 { font-size: 4rem; font-weight: 900; margin-bottom: 40px; line-height: 1.1; letter-spacing: -2px; }
.ci-btn { display: inline-flex; align-items: center; gap: 15px; padding: 20px 50px; background: #fff; color: #000; text-decoration: none; font-weight: 800; font-size: 1.2rem; border-radius: 100px; transition: transform 0.3s, background 0.3s; }
.ci-btn:hover { transform: translateY(-5px); background: var(--accent-gold); }

@media (max-width: 1024px) {
    .ci-anatomy-grid { grid-template-columns: 1fr; }
    .ci-title { font-size: 3rem; }
    .ci-d-container { flex-direction: column; }
    .ci-brand-book-mockup { width: 100%; max-width: 400px; }
    .ci-step-list::before { left: 30px; }
    .ci-step-number { width: 60px; height: 60px; font-size: 1.2rem; }
}

/* --- WEB DESIGN PAGE --- */
.service-wd-container { background: #05070a; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* WD Hero */
.wd-hero { min-height: 80vh; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 150px 5% 100px; overflow: hidden; background: radial-gradient(ellipse at bottom, rgba(245, 176, 39, 0.1) 0%, #05070a 60%); }
.wd-code-rain { position: absolute; inset: 0; z-index: 0; opacity: 0.2; pointer-events: none; overflow: hidden; }
.code-line { position: absolute; width: 2px; height: 100vh; background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent); top: -100vh; left: var(--x); animation: rainDown var(--d) linear infinite; }
@keyframes rainDown { 0% { top: -100vh; } 100% { top: 100vh; } }
.wd-hero-content { position: relative; z-index: 1; max-width: 900px; }
.wd-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 30px; color: #fff; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.wd-badge i { color: var(--accent-gold); }
.wd-title { font-size: 4.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1.5px; }
.wd-title span { color: var(--accent-gold); -webkit-text-stroke: 0; }
.wd-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; margin-bottom: 40px; }
.wd-hero-actions { display: flex; justify-content: center; }
.wd-btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; border: 1px solid var(--accent-gold); color: var(--accent-gold); text-decoration: none; font-weight: 700; font-size: 1.1rem; border-radius: 100px; transition: all 0.3s; }
.wd-btn-ghost:hover { background: var(--accent-gold); color: #000; }

/* Tech Stack Marquee */
.wd-tech-stack { padding: 40px 0; background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; white-space: nowrap; }
.tech-marquee-wrapper { width: 100%; display: flex; }
.tech-marquee { display: flex; animation: marquee 30s linear infinite; }
.tech-marquee span { display: inline-flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,0.3); margin: 0 40px; transition: color 0.3s; }
.tech-marquee span:hover { color: #fff; }
.tech-marquee span i { font-size: 2rem; color: var(--accent-gold); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Floating Mockup Section */
.wd-mockup-section { padding: 150px 5%; background: #05070a; }
.wd-mockup-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.wd-mockup-text { flex: 1; }
.wd-mockup-text h2 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.wd-mockup-text h2 span { color: var(--accent-gold); }
.wd-mockup-text > p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.6; }
.wd-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 30px; }
.wd-feature-list li { display: flex; gap: 20px; align-items: flex-start; }
.wd-feature-list li i { font-size: 2rem; color: var(--accent-gold); background: rgba(245, 176, 39, 0.1); width: 60px; height: 60px; border-radius: 16px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.wd-feature-list li h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.wd-feature-list li p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.wd-mockup-visual { flex: 1; display: flex; justify-content: center; position: relative; perspective: 1000px; }
.css-laptop { width: 500px; position: relative; transform: rotateY(-15deg) rotateX(10deg); animation: float 6s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes float { 0% { transform: translateY(0px) rotateY(-15deg) rotateX(10deg); } 50% { transform: translateY(-20px) rotateY(-15deg) rotateX(12deg); } 100% { transform: translateY(0px) rotateY(-15deg) rotateX(10deg); } }
.css-laptop-screen { width: 100%; height: 300px; background: #000; border: 10px solid #1a1a1a; border-radius: 16px 16px 0 0; position: relative; overflow: hidden; box-shadow: inset 0 0 20px rgba(245, 176, 39, 0.2); }
.css-laptop-keyboard { width: 110%; height: 20px; background: #2a2a2a; border-radius: 0 0 16px 16px; margin-left: -5%; transform: rotateX(60deg); transform-origin: top; background-image: linear-gradient(to bottom, #333, #111); box-shadow: 0 30px 50px rgba(0,0,0,0.8); }

/* Abstract UI in laptop */
.ui-header { height: 30px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.1); }
.ui-body { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.ui-box { width: 40%; height: 100px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(245, 176, 39, 0.3); }
.glow-box { animation: pulseGlow 4s infinite alternate; }
.ui-lines { display: flex; flex-direction: column; gap: 8px; }
.ui-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; width: 100%; }
.ui-line.short { width: 60%; }

/* WD Philosophy */
.wd-philosophy { padding: 120px 5%; background: #0a0d14; border-top: 1px solid rgba(255,255,255,0.05); }
.wd-section-title { text-align: center; margin-bottom: 80px; }
.wd-section-title h2 { font-size: 3rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 15px; }
.wd-section-title h2 span { color: var(--accent-gold); }
.wd-section-title p { font-size: 1.2rem; color: rgba(255,255,255,0.5); }
.wd-p-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.wd-p-card { background: rgba(255,255,255,0.02); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s; }
.wd-p-card.glow-card { border-color: rgba(245, 176, 39, 0.3); background: radial-gradient(circle at top left, rgba(245, 176, 39, 0.05) 0%, transparent 60%); }
.wd-p-card:hover { transform: translateY(-10px); }
.wd-p-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 25px; }
.wd-p-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 15px; }
.wd-p-card p { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* WD CTA */
.wd-cta { padding: 150px 0; background: #05070a; position: relative; overflow: hidden; }
.wd-cta-box { width: 100%; margin: 0; background: linear-gradient(90deg, transparent 0%, rgba(245, 176, 39, 0.05) 50%, transparent 100%); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 120px 5%; text-align: center; }
.wd-cta-box h2 { font-size: 5vw; font-weight: 900; margin-bottom: 50px; line-height: 1; letter-spacing: -2px; text-transform: uppercase; }
.wd-btn-solid { display: inline-flex; align-items: center; gap: 15px; padding: 25px 60px; background: var(--accent-gold); color: #000; text-decoration: none; font-weight: 800; font-size: 1.4rem; border-radius: 100px; transition: transform 0.3s; box-shadow: 0 20px 50px rgba(245, 176, 39, 0.2); }
.wd-btn-solid:hover { transform: scale(1.05); }

@media (max-width: 1024px) {
    .wd-title { font-size: 3.5rem; }
    .wd-mockup-container { flex-direction: column; text-align: center; }
    .wd-feature-list li { flex-direction: column; align-items: center; text-align: center; }
    .css-laptop { width: 100%; max-width: 400px; }
    .wd-p-grid { grid-template-columns: 1fr; }
}

/* --- SEO & GEO PAGE --- */
.service-seo-container { background: #030406; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* SEO Hero */
.seo-hero { min-height: 85vh; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 150px 5% 100px; overflow: hidden; }
.seo-radar-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; opacity: 0.15; pointer-events: none; }
.radar-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px solid var(--accent-gold); border-radius: 50%; }
.rc-1 { width: 300px; height: 300px; }
.rc-2 { width: 550px; height: 550px; }
.rc-3 { width: 800px; height: 800px; }
.radar-sweep { position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; transform-origin: 0 0; background: conic-gradient(from 0deg, transparent 0%, rgba(245, 176, 39, 0.4) 10%, transparent 40%); border-radius: 50%; animation: radarSpin 4s linear infinite; }
@keyframes radarSpin { 100% { transform: rotate(360deg); } }

.seo-hero-content { position: relative; z-index: 1; max-width: 900px; }
.seo-badge { display: inline-block; padding: 8px 24px; border: 1px solid rgba(245, 176, 39, 0.3); border-radius: 50px; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 30px; color: var(--accent-gold); background: rgba(245, 176, 39, 0.05); }
.seo-title { font-size: 4.5rem; font-weight: 300; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1.5px; }
.seo-title span { font-weight: 900; color: #fff; background: linear-gradient(90deg, #fff, var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.seo-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; margin-bottom: 40px; }
.seo-hero-actions { display: flex; justify-content: center; }
.seo-btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; border: 1px solid rgba(255,255,255,0.2); color: #fff; text-decoration: none; font-weight: 700; font-size: 1.1rem; border-radius: 100px; transition: all 0.3s; }
.seo-btn-ghost:hover { border-color: var(--accent-gold); background: rgba(245, 176, 39, 0.05); }

/* SEO Differences */
.seo-differences { padding: 120px 5%; background: #06080c; border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); }
.seo-section-title { text-align: center; margin-bottom: 80px; }
.seo-section-title h2 { font-size: 3.5rem; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 15px; }
.seo-section-title h2 span { color: var(--accent-gold); }
.seo-section-title p { font-size: 1.2rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; }

.seo-diff-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.seo-d-card { background: #0a0d14; border: 1px solid rgba(255,255,255,0.05); padding: 50px; border-radius: 24px; transition: transform 0.3s; position: relative; overflow: hidden; }
.seo-d-card.glow-card { border-color: rgba(245, 176, 39, 0.3); background: radial-gradient(circle at top right, rgba(245, 176, 39, 0.05) 0%, #0a0d14 70%); }
.seo-d-card:hover { transform: translateY(-10px); }
.seo-d-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.seo-d-header i { font-size: 2.5rem; color: var(--accent-gold); }
.seo-d-header h3 { font-size: 2rem; font-weight: 800; color: #fff; }
.seo-d-body p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 30px; }
.seo-d-list { list-style: none; padding: 0; margin: 0; }
.seo-d-list li { font-size: 1.05rem; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.seo-d-list li i { color: #10b981; /* Green check */ }

/* Dashboard & Process */
.seo-dashboard-section { padding: 150px 5%; background: #030406; }
.seo-dash-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.seo-dash-text { flex: 1; }
.seo-dash-text h2 { font-size: 3.5rem; font-weight: 300; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.seo-dash-text h2 span { font-weight: 900; color: var(--accent-gold); }
.seo-dash-text > p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 50px; line-height: 1.6; }

.seo-steps { display: flex; flex-direction: column; gap: 30px; }
.s-step { display: flex; gap: 20px; align-items: flex-start; }
.s-step-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,0.05); display: flex; justify-content: center; align-items: center; font-size: 1.2rem; color: var(--accent-gold); flex-shrink: 0; }
.s-step-text h4 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.s-step-text p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.seo-dash-visual { flex: 1; display: flex; justify-content: center; position: relative; }
.css-dashboard { width: 100%; max-width: 500px; background: #0a0d14; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(245, 176, 39, 0.1); }
.dash-header { height: 40px; background: #11151d; display: flex; align-items: center; padding: 0 20px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dash-dot { width: 12px; height: 12px; border-radius: 50%; background: #333; }
.dash-dot:nth-child(1) { background: #ff5f56; }
.dash-dot:nth-child(2) { background: #ffbd2e; }
.dash-dot:nth-child(3) { background: #27c93f; }
.dash-title { margin-left: auto; font-size: 0.8rem; color: rgba(255,255,255,0.3); font-family: monospace; }
.dash-body { padding: 30px; }
.dash-metrics { display: flex; gap: 20px; margin-bottom: 40px; }
.dash-m-card { flex: 1; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; display: flex; flex-direction: column; }
.dash-m-card span { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.dash-m-card strong { font-size: 2.5rem; font-weight: 800; color: #10b981; }

.dash-graph { position: relative; height: 150px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); border-left: 1px solid rgba(255,255,255,0.1); }
.graph-bg-lines { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; }
.g-line { height: 1px; background: rgba(255,255,255,0.03); width: 100%; }
.dash-chart { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart-path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawChart 3s ease-out forwards; }
@keyframes drawChart { 100% { stroke-dashoffset: 0; } }

/* SEO CTA */
.seo-cta { padding: 150px 0; background: linear-gradient(180deg, #030406 0%, #06080c 100%); text-align: center; }
.seo-cta-content { max-width: 800px; margin: 0 auto; }
.seo-cta-content h2 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; letter-spacing: -2px; }
.seo-cta-content p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.seo-btn-solid { display: inline-flex; align-items: center; gap: 15px; padding: 20px 50px; background: var(--accent-gold); color: #000; text-decoration: none; font-weight: 800; font-size: 1.2rem; border-radius: 100px; transition: transform 0.3s; box-shadow: 0 10px 30px rgba(245, 176, 39, 0.2); }
.seo-btn-solid:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(245, 176, 39, 0.4); }

@media (max-width: 1024px) {
    .seo-dash-container { flex-direction: column; }
    .seo-diff-grid { grid-template-columns: 1fr; }
    .seo-title { font-size: 3.5rem; }
}

/* --- T-SOFT PAGE --- */
.service-tsoft-container { background: #050505; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* T-Soft Hero */
.tsoft-hero { min-height: 85vh; position: relative; display: flex; align-items: center; justify-content: space-between; padding: 150px 8%; overflow: hidden; }
.tsoft-bg-glow { position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(245, 176, 39, 0.1) 0%, transparent 70%); filter: blur(100px); pointer-events: none; }
.tsoft-hero-content { flex: 1; max-width: 700px; position: relative; z-index: 1; }
.tsoft-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 30px; color: #fff; background: rgba(255,255,255,0.02); }
.tsoft-badge i { color: var(--accent-gold); }
.tsoft-title { font-size: 4.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1.5px; }
.tsoft-title span { color: var(--accent-gold); }
.tsoft-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; margin-bottom: 40px; }
.tsoft-hero-actions { display: flex; gap: 20px; }
.tsoft-btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; border: 1px solid var(--accent-gold); color: var(--accent-gold); text-decoration: none; font-weight: 700; font-size: 1.1rem; border-radius: 100px; transition: all 0.3s; }
.tsoft-btn-ghost:hover { background: var(--accent-gold); color: #000; }

/* 3D Credit Card */
.tsoft-3d-visual { flex: 1; display: flex; justify-content: center; perspective: 1000px; position: relative; z-index: 1; }
.css-credit-card { width: 450px; height: 280px; background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.1); transform: rotateY(-20deg) rotateX(10deg); animation: floatCC 6s ease-in-out infinite; transform-style: preserve-3d; position: relative; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.css-credit-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); transform: skewX(-20deg); animation: shine 5s infinite; }
@keyframes floatCC { 0%, 100% { transform: translateY(0) rotateY(-20deg) rotateX(10deg); } 50% { transform: translateY(-20px) rotateY(-15deg) rotateX(15deg); } }
@keyframes shine { 0% { left: -100%; } 20%, 100% { left: 200%; } }
.cc-chip { width: 50px; height: 35px; background: linear-gradient(135deg, #f5b027 0%, #b8860b 100%); border-radius: 6px; position: relative; overflow: hidden; }
.cc-chip::after { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: rgba(0,0,0,0.2); }
.cc-logo { align-self: flex-end; font-size: 1.5rem; font-weight: 900; font-style: italic; color: #fff; letter-spacing: 1px; }
.cc-number { font-size: 1.8rem; font-family: monospace; letter-spacing: 4px; color: #fff; margin-top: auto; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.cc-name { font-size: 1.1rem; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; margin-top: 10px; }

/* T-Soft Features (Bento Grid) */
.tsoft-features { padding: 120px 8%; background: #080808; border-top: 1px solid rgba(255,255,255,0.03); }
.tsoft-section-title { text-align: center; margin-bottom: 80px; }
.tsoft-section-title h2 { font-size: 3.5rem; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 15px; }
.tsoft-section-title h2 span { color: var(--accent-gold); }
.tsoft-section-title p { font-size: 1.2rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; }

.tsoft-f-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.tsoft-f-card { background: #0a0a0a; border: 1px solid rgba(255,255,255,0.05); padding: 50px; border-radius: 24px; transition: transform 0.3s; }
.tsoft-f-card.glow-card { border-color: rgba(245, 176, 39, 0.3); background: radial-gradient(circle at center, rgba(245, 176, 39, 0.05) 0%, #0a0a0a 70%); }
.tsoft-f-card:hover { transform: translateY(-5px); }
.tsoft-f-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 25px; }
.tsoft-f-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; color: #fff; }
.tsoft-f-card p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* Funnel & Timeline */
.tsoft-funnel-section { padding: 150px 8%; background: #050505; }
.tsoft-funnel-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 80px; align-items: center; }
.tsoft-funnel-text { flex: 1; }
.tsoft-funnel-text h2 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.tsoft-funnel-text h2 span { color: var(--accent-gold); }
.tsoft-funnel-text > p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 50px; line-height: 1.6; }

.tsoft-timeline { position: relative; display: flex; flex-direction: column; gap: 30px; border-left: 2px solid rgba(255,255,255,0.1); padding-left: 30px; margin-left: 10px; }
.tl-item { position: relative; }
.tl-dot { position: absolute; left: -39px; top: 0; width: 16px; height: 16px; border-radius: 50%; background: #050505; border: 2px solid var(--accent-gold); }
.tl-content h4 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.tl-content p { font-size: 1.05rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Live Sales Counter Mockup */
.tsoft-funnel-visual { flex: 1; display: flex; justify-content: center; }
.live-sales-counter { background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 50px; text-align: center; width: 100%; max-width: 450px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 50px rgba(0,0,0,0.8); }
.lsc-header { font-size: 0.9rem; color: rgba(255,255,255,0.4); letter-spacing: 3px; margin-bottom: 20px; font-weight: 700; }
.lsc-amount { display: flex; justify-content: center; align-items: baseline; gap: 10px; margin-bottom: 30px; }
.currency { font-size: 2.5rem; color: var(--accent-gold); font-weight: 300; }
.numbers { font-size: 4rem; font-weight: 900; color: #fff; font-family: monospace; letter-spacing: -2px; }
.lsc-status { display: inline-flex; align-items: center; gap: 10px; background: rgba(16, 185, 129, 0.1); padding: 10px 20px; border-radius: 50px; }
.pulse-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px #10b981; animation: pulseFast 1.5s infinite; }
@keyframes pulseFast { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }

/* T-Soft CTA */
.tsoft-cta { padding: 150px 0; background: #080808; text-align: center; border-top: 1px solid rgba(255,255,255,0.03); }
.tsoft-cta-content { max-width: 800px; margin: 0 auto; }
.tsoft-cta-content h2 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; letter-spacing: -2px; }
.tsoft-cta-content p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.tsoft-btn-solid { display: inline-flex; align-items: center; gap: 15px; padding: 25px 60px; background: var(--accent-gold); color: #000; text-decoration: none; font-weight: 800; font-size: 1.3rem; border-radius: 100px; transition: transform 0.3s; box-shadow: 0 15px 40px rgba(245, 176, 39, 0.2); }
.tsoft-btn-solid:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(245, 176, 39, 0.4); }

@media (max-width: 1024px) {
    .tsoft-hero { flex-direction: column; text-align: center; padding-top: 120px; gap: 60px; }
    .tsoft-title { font-size: 3.5rem; }
    .tsoft-f-grid { grid-template-columns: 1fr; }
    .tsoft-funnel-container { flex-direction: column; }
    .css-credit-card { width: 100%; max-width: 400px; height: 250px; }
}

/* --- SOFTWARE DEVELOPMENT PAGE --- */
.service-soft-container { background: #020305; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Software Hero */
.soft-hero { min-height: 90vh; position: relative; display: flex; align-items: center; justify-content: space-between; padding: 150px 8%; overflow: hidden; }
.soft-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 50px 50px; background-position: center center; perspective: 1000px; transform: rotateX(60deg) scale(2); opacity: 0.3; pointer-events: none; }
.soft-hero-content { flex: 1; max-width: 600px; position: relative; z-index: 1; }
.soft-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; border: 1px solid rgba(245, 176, 39, 0.3); border-radius: 50px; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 30px; color: var(--accent-gold); background: rgba(245, 176, 39, 0.05); font-family: monospace; }
.soft-title { font-size: 4.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1.5px; }
.soft-title span { color: var(--accent-gold); } /* Reverted to gold */
.soft-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; margin-bottom: 40px; }
.soft-hero-actions { display: flex; gap: 20px; }
.soft-btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; border: 1px solid var(--accent-gold); color: var(--accent-gold); text-decoration: none; font-weight: 700; font-size: 1.1rem; border-radius: 100px; transition: all 0.3s; }
.soft-btn-ghost:hover { background: var(--accent-gold); color: #000; }

/* CSS IDE Mockup */
.soft-ide-wrapper { flex: 1; display: flex; justify-content: flex-end; position: relative; z-index: 1; perspective: 1000px; }
.css-ide { width: 100%; max-width: 550px; background: #1e1e1e; border-radius: 12px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 40px rgba(245, 176, 39, 0.1); border: 1px solid rgba(255,255,255,0.1); transform: rotateY(-15deg); transition: transform 0.5s; }
.css-ide:hover { transform: rotateY(0deg); }
.ide-header { background: #2d2d2d; height: 35px; display: flex; align-items: center; padding: 0 15px; position: relative; }
.ide-controls { display: flex; gap: 8px; }
.ide-controls span { width: 12px; height: 12px; border-radius: 50%; }
.ide-controls .close { background: #ff5f56; }
.ide-controls .min { background: #ffbd2e; }
.ide-controls .max { background: #27c93f; }
.ide-title { position: absolute; width: 100%; text-align: center; left: 0; font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.5); pointer-events: none; }
.ide-body { display: flex; font-family: 'Fira Code', 'Courier New', Courier, monospace; font-size: 0.95rem; line-height: 1.6; padding: 20px 0; }
.ide-line-numbers { padding: 0 15px; color: #6e7681; text-align: right; user-select: none; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; }
.ide-code { padding-left: 15px; color: #c9d1d9; flex: 1; }
.ide-code p { margin: 0; }
.ide-code .indent { padding-left: 20px; }
.ide-code .indent-2 { padding-left: 40px; }

/* Syntax Highlighting */
.c-keyword { color: #ff7b72; }
.c-class { color: #79c0ff; }
.c-func { color: #d2a8ff; }
.c-var { color: var(--accent-gold); } /* Reverted to gold */
.c-string { color: #a5d6ff; }

/* Typing Animation */
.type-writer { display: inline-block; white-space: nowrap; overflow: hidden; width: 0; animation: typing 3s steps(40, end) infinite alternate; }
.cursor { animation: blink 1s step-end infinite; }
@keyframes typing { 0% { width: 0; } 100% { width: 100%; } }
@keyframes blink { 50% { opacity: 0; } }

/* Software Tech (Bento Grid) */
.soft-tech { padding: 120px 8%; background: #030406; border-top: 1px solid rgba(255,255,255,0.03); }
.soft-section-title { text-align: center; margin-bottom: 80px; }
.soft-section-title h2 { font-size: 3.5rem; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 15px; }
.soft-section-title h2 span { color: var(--accent-gold); }
.soft-section-title p { font-size: 1.2rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; }

.soft-t-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.soft-t-card { background: #0a0d14; border: 1px solid rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; transition: transform 0.3s; display: flex; flex-direction: column; }
.soft-t-card.glow-card { border-color: rgba(245, 176, 39, 0.3); background: radial-gradient(circle at top right, rgba(245, 176, 39, 0.05) 0%, #0a0d14 70%); }
.soft-t-card:hover { transform: translateY(-10px); }
.soft-t-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 25px; display: flex; gap: 15px; }
.soft-t-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; color: #fff; line-height: 1.3; }
.soft-t-card p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-top: auto; }

/* Methodology */
.soft-methodology { padding: 150px 8%; background: #020305; }
.soft-m-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 80px; align-items: center; }

/* Abstract Rings */
.soft-m-visual { flex: 1; display: flex; justify-content: center; position: relative; height: 400px; }
.arch-rings { position: relative; width: 300px; height: 300px; perspective: 800px; transform-style: preserve-3d; }
.ring { position: absolute; inset: 0; border: 2px solid rgba(245, 176, 39, 0.3); border-radius: 50%; }
.r1 { transform: rotateX(60deg) rotateY(0deg); animation: spinRing 8s linear infinite; }
.r2 { transform: rotateX(60deg) rotateY(60deg); animation: spinRing 10s linear infinite reverse; }
.r3 { transform: rotateX(60deg) rotateY(120deg); animation: spinRing 12s linear infinite; }
.core-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: var(--accent-gold); border-radius: 50%; filter: blur(30px); opacity: 0.3; animation: pulseGlow 2s infinite alternate; }
@keyframes spinRing { 100% { transform: rotateX(60deg) rotateY(360deg); } }
@keyframes pulseGlow { 100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; } }

.soft-m-text { flex: 1; }
.soft-m-text h2 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.soft-m-text h2 span { color: var(--accent-gold); }
.soft-m-text > p { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.6; }

.soft-m-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 30px; }
.soft-m-list li { display: flex; gap: 20px; align-items: flex-start; }
.soft-m-list li i { font-size: 1.5rem; color: var(--accent-gold); margin-top: 5px; }
.soft-m-list li h4 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.soft-m-list li p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }

/* Soft CTA */
.soft-cta { padding: 150px 0; background: linear-gradient(180deg, #020305 0%, #05070a 100%); text-align: center; border-top: 1px solid rgba(255,255,255,0.03); }
.soft-cta-content { max-width: 800px; margin: 0 auto; }
.soft-cta-content h2 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; letter-spacing: -2px; }
.soft-cta-content p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.soft-btn-solid { display: inline-flex; align-items: center; gap: 15px; padding: 20px 50px; background: var(--accent-gold); color: #000; text-decoration: none; font-weight: 800; font-size: 1.2rem; border-radius: 100px; transition: transform 0.3s; box-shadow: 0 10px 30px rgba(245, 176, 39, 0.2); }
.soft-btn-solid:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(245, 176, 39, 0.4); }

@media (max-width: 1024px) {
    .soft-hero { flex-direction: column; text-align: center; padding-top: 120px; gap: 60px; }
    .soft-title { font-size: 3.5rem; }
    .soft-ide-wrapper { justify-content: center; }
    .css-ide { transform: none; }
    .css-ide:hover { transform: none; }
    .soft-t-grid { grid-template-columns: 1fr; }
    .soft-m-container { flex-direction: column-reverse; }
}

/* --- PARLA CRM PAGE --- */
.service-crm-container { background: #05070a; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* CRM Hero */
.crm-saas-hero { min-height: 100vh; padding-top: 150px; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; }
.crm-grid-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(245, 176, 39, 0.15) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.4; pointer-events: none; }
.crm-hero-content-center { text-align: center; max-width: 950px; padding: 0 20px; position: relative; z-index: 2; margin-bottom: 50px; }
.crm-badge { display: inline-block; padding: 8px 20px; border: 1px solid rgba(245, 176, 39, 0.4); border-radius: 50px; font-size: 0.8rem; letter-spacing: 2px; color: var(--accent-gold); font-weight: 800; margin-bottom: 20px; background: rgba(245, 176, 39, 0.05); }
.crm-title-huge { font-size: 4rem; font-weight: 900; line-height: 1.15; margin-bottom: 25px; letter-spacing: -1px; }
.crm-title-huge span { color: var(--accent-gold); }
.crm-subtitle-large { font-size: 1.2rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; }

/* --- PARLA CRM LUXURY PAGE --- */
.crm-luxury-container { background: #030407; min-height: 100vh; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Lux Hero */
.crm-lux-hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 20px 50px; text-align: center; }
.crm-lux-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(245, 176, 39, 0.15) 0%, transparent 60%); pointer-events: none; }
.crm-lux-hero-content { position: relative; z-index: 2; max-width: 900px; }
.crm-lux-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 24px; border: 1px solid rgba(245, 176, 39, 0.3); border-radius: 50px; font-size: 0.85rem; letter-spacing: 2px; color: var(--accent-gold); font-weight: 800; margin-bottom: 30px; background: rgba(245, 176, 39, 0.05); box-shadow: 0 0 20px rgba(245, 176, 39, 0.1); }
.crm-lux-title { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.crm-lux-title span { background: linear-gradient(135deg, #fff, var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.crm-lux-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 800px; margin: 0 auto; }

/* Lux Products */
.crm-lux-product { padding: 120px 5%; border-top: 1px solid rgba(255,255,255,0.03); position: relative; }
.crm-lux-product.inverted-lux { background: #05070a; }
.crm-lux-product-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.crm-lux-product-inner.reverse { flex-direction: row-reverse; }

.crm-lux-text { flex: 1; max-width: 600px; }
.crm-lux-eyebrow { font-size: 0.8rem; font-weight: 800; color: var(--accent-gold); letter-spacing: 2px; margin-bottom: 20px; display: inline-block; padding: 6px 15px; border: 1px solid rgba(245, 176, 39, 0.3); border-radius: 50px; background: rgba(245, 176, 39, 0.05); }
.crm-lux-eyebrow.green-eye { color: #10b981; border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.05); }
.crm-lux-text h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.15; letter-spacing: -1px; }
.crm-lux-desc { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; }

.crm-lux-features { display: flex; flex-direction: column; gap: 25px; }
.lux-feat-item { display: flex; gap: 20px; align-items: flex-start; }
.lux-feat-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(245, 176, 39, 0.05); border: 1px solid rgba(245, 176, 39, 0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent-gold); flex-shrink: 0; }
.green-features .lux-feat-icon { background: rgba(16, 185, 129, 0.05); border-color: rgba(16, 185, 129, 0.2); color: #10b981; }
.lux-feat-content h4 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.lux-feat-content p { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }

.crm-lux-visual { flex: 1.2; position: relative; }
.lux-image-wrapper { position: relative; border-radius: 20px; overflow: hidden; transform: perspective(1000px) rotateY(-5deg); transition: transform 0.5s ease; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.8); }
.crm-lux-product-inner.reverse .lux-image-wrapper { transform: perspective(1000px) rotateY(5deg); }
.lux-image-wrapper:hover { transform: perspective(1000px) rotateY(0deg); }
.lux-image-wrapper img { width: 100%; display: block; }
.lux-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(245, 176, 39, 0.1) 0%, transparent 70%); mix-blend-mode: screen; pointer-events: none; }
.lux-glow.green-glow { background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%); }

/* Lux Bento Grid */
.crm-lux-bento { padding: 120px 5%; background: #030407; }
.lux-bento-header { text-align: center; margin-bottom: 60px; }
.lux-bento-header h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
.lux-bento-header p { font-size: 1.15rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; }
.lux-bento-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.lux-b-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: transform 0.3s, border-color 0.3s; }
.lux-b-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.lux-b-card.highlight-card { background: radial-gradient(circle at top right, rgba(245, 176, 39, 0.05) 0%, rgba(255,255,255,0.02) 80%); border-color: rgba(245, 176, 39, 0.2); }
.lux-b-card i { font-size: 2.2rem; color: var(--accent-gold); margin-bottom: 25px; display: inline-block; }
.lux-b-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; color: #fff; }
.lux-b-card p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* Lux CTA */
.crm-lux-cta { padding: 120px 5%; background: #05070a; text-align: center; border-top: 1px solid rgba(255,255,255,0.03); }
.lux-cta-content { max-width: 700px; margin: 0 auto; }
.lux-cta-content h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; }
.lux-cta-content p { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; line-height: 1.6; }
.lux-btn { padding: 15px 40px !important; font-size: 1.1rem !important; font-weight: 800 !important; border-radius: 50px !important; }

@media (max-width: 1024px) {
    .crm-lux-title { font-size: 3rem; }
    .crm-lux-product-inner, .crm-lux-product-inner.reverse { flex-direction: column; gap: 50px; }
    .crm-lux-text, .crm-lux-visual { max-width: 100%; width: 100%; }
    .lux-image-wrapper { transform: none !important; }
    .lux-bento-grid { grid-template-columns: 1fr; }
    .lux-cta-content h2 { font-size: 2.5rem; }
}

/* STORY DETAIL PAGE */
.story-detail-hero { position: relative; height: 70vh; background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: flex-end; padding: 100px 5%; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #080a0f 0%, rgba(8, 10, 15, 0.7) 50%, rgba(8, 10, 15, 0.4) 100%); }
.story-detail-hero-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; padding-bottom: 50px; }
.back-link { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1rem; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s; }
.back-link:hover { color: var(--accent-gold); }
.detail-title { font-size: 4.5rem; font-weight: 900; color: #fff; margin: 20px 0 30px; letter-spacing: -1.5px; line-height: 1.1; }
.detail-rating-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(245, 176, 39, 0.1); border: 1px solid rgba(245, 176, 39, 0.3); padding: 10px 25px; border-radius: 50px; color: #fff; font-weight: 700; font-size: 1.1rem; }
.detail-rating-badge i { color: var(--accent-gold); }

.story-detail-content { padding: 100px 5% 150px; position: relative; z-index: 1; }
.detail-container { max-width: 1000px; margin: 0 auto; }
.detail-block { display: flex; gap: 40px; margin-bottom: 80px; background: rgba(255,255,255,0.02); padding: 50px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.03); transition: transform 0.3s; }
.detail-block:hover { transform: translateY(-5px); background: rgba(255,255,255,0.03); }
.block-icon { font-size: 3rem; color: rgba(255,255,255,0.2); }
.block-text h3 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.block-text p { font-size: 1.25rem; line-height: 1.8; color: rgba(255,255,255,0.7); font-weight: 300; }

.detail-testimonial { background: linear-gradient(135deg, rgba(245, 176, 39, 0.05) 0%, rgba(255,255,255,0.02) 100%); padding: 60px; border-radius: 24px; border: 1px solid rgba(245, 176, 39, 0.2); position: relative; margin-top: 100px; text-align: center; }
.quote-icon { font-size: 4rem; color: rgba(245, 176, 39, 0.2); margin-bottom: 30px; }
.detail-testimonial p { font-size: 1.5rem; line-height: 1.8; color: #fff; font-weight: 500; font-style: italic; margin-bottom: 30px; }
.author-name { font-size: 1.1rem; font-weight: 800; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 2px; }

@media (max-width: 768px) {
    .detail-title { font-size: 3rem; }
    .detail-block { flex-direction: column; gap: 20px; padding: 30px; }
    .block-icon { font-size: 2.5rem; }
    .detail-testimonial { padding: 40px 30px; }
    .detail-testimonial p { font-size: 1.2rem; }
}

@media (max-width: 1024px) {
    .case-study-row, .case-study-row.reversed { flex-direction: column; gap: 60px; }
    .stories-hero .page-title { font-size: 3.5rem; }
    .case-title { font-size: 3rem; }
    .case-image-wrapper { width: 100%; }
}
@media (max-width: 768px) {
    .stories-hero .page-title { font-size: 2.5rem; }
    .case-title { font-size: 2.2rem; }
    .stories-cta h2 { font-size: 2.5rem; }
    .case-rating { bottom: 20px; right: 20px; left: auto !important; padding: 15px 20px; font-size: 1rem; }
    .story-path-line { display: none; }
}

@media (max-width: 992px) { .contact-info-row, .contact-main-grid { grid-template-columns: 1fr; } .contact-hero-content .page-title { font-size: 2.2rem; } }

/* ==================== APPOINTMENT MODAL STYLES ==================== */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: #ffffff; width: 90%; max-width: 650px; border-radius: 20px; padding: 50px; position: relative; transform: translateY(40px) scale(0.95); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); opacity: 1; }
.modal-close { position: absolute; top: 25px; right: 25px; background: rgba(0,0,0,0.05); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; color: #666; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.modal-close:hover { background: var(--accent-gold); color: #fff; transform: rotate(90deg); }
.modal-header { text-align: center; margin-bottom: 40px; }
.modal-header h2 { font-size: 2.2rem; font-weight: 800; color: #1a202c; margin-bottom: 15px; letter-spacing: -0.5px; }
.modal-header p { font-size: 1.05rem; color: #64748b; line-height: 1.6; }
.modal-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.9rem; font-weight: 700; color: #1a202c; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px 20px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1rem; color: #1a202c; background: #f8fafc; font-family: 'Inter', sans-serif; transition: all 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-gold); background: #ffffff; box-shadow: 0 0 0 4px rgba(245, 176, 39, 0.1); }
.select-wrapper { position: relative; }
.select-wrapper select { appearance: none; padding-right: 50px; cursor: pointer; }
.select-wrapper i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #64748b; pointer-events: none; }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit-modal { background: var(--accent-gold); color: #fff; font-size: 1.1rem; font-weight: 700; padding: 18px; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s; margin-top: 10px; width: 100%; letter-spacing: 0.5px; }
.btn-submit-modal:hover { background: #e09b1f; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(245, 176, 39, 0.3); }

@media (max-width: 768px) {
    .modal-box { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 20px; }
    .modal-header h2 { font-size: 1.8rem; }
}

/* ==================== ABOUT TEAM STYLES ==================== */
.about-team { padding: 100px 5%; background: var(--bg-dark); color: #fff; }
.a-team-container { max-width: 1400px; margin: 0 auto; text-align: center; }
.a-team-container h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; }
.a-team-container h2 span { color: var(--accent-gold); }
.a-team-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }

.a-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.a-team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; overflow: hidden; transition: all 0.4s ease; display: flex; flex-direction: column; }
.a-team-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.06); border-color: rgba(245, 176, 39, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

.a-team-img { position: relative; width: 100%; height: 320px; overflow: hidden; }
.a-team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: grayscale(50%) contrast(1.2); }
.a-team-card:hover .a-team-img img { transform: scale(1.05); filter: grayscale(0%) contrast(1.1); }

.ai-badge { position: absolute; top: 20px; right: 20px; background: rgba(16, 185, 129, 0.9); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: #fff; font-size: 0.75rem; font-weight: 800; padding: 6px 12px; border-radius: 30px; display: flex; align-items: center; gap: 6px; letter-spacing: 1px; }
.founder-card { border-color: rgba(245, 176, 39, 0.2); }

.a-team-info { padding: 30px; text-align: left; flex: 1; display: flex; flex-direction: column; }
.a-team-info h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.a-team-role { font-size: 0.9rem; color: var(--accent-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; display: block; }
/* ==================== CAREER PAGE STYLES ==================== */
.career-page-container { background: var(--bg-dark); color: #fff; }
.career-main { padding: 80px 5%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }

.section-heading { font-size: 2.5rem; font-weight: 800; margin-bottom: 40px; color: #fff; letter-spacing: -1px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.section-heading span { color: var(--accent-gold); }

.career-positions { display: flex; flex-direction: column; gap: 20px; }
.job-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 30px; border-radius: 16px; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; }
.job-card:hover { transform: translateX(10px); background: rgba(255,255,255,0.05); border-color: rgba(66, 153, 225, 0.4); }
.job-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.job-tags { display: flex; gap: 20px; }
.job-tags span { font-size: 0.9rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.btn-apply { background: rgba(66, 153, 225, 0.1); color: #4299e1; border: 1px solid rgba(66, 153, 225, 0.3); padding: 10px 25px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s; }
.job-card:hover .btn-apply { background: #4299e1; color: #fff; }

.career-form-wrapper { background: rgba(15, 18, 25, 0.8); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 50px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.form-header { margin-bottom: 40px; text-align: center; }
.form-header h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.form-header h2 span { color: var(--accent-gold); }
.form-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

.c-form { display: flex; flex-direction: column; gap: 25px; }
.c-form-row { display: flex; gap: 25px; }
.c-form-row .c-form-group { flex: 1; }
.c-form-group { display: flex; flex-direction: column; gap: 8px; }
.c-form-group label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.c-form-group input, .c-form-group select, .c-form-group textarea { width: 100%; padding: 15px 20px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; font-size: 1rem; color: #fff; background: rgba(255,255,255,0.03); font-family: 'Inter', sans-serif; transition: all 0.3s; outline: none; }
.c-form-group input:focus, .c-form-group select:focus, .c-form-group textarea:focus { border-color: var(--accent-gold); background: rgba(255,255,255,0.05); }

.c-select-wrapper { position: relative; }
.c-select-wrapper select { appearance: none; padding-right: 50px; cursor: pointer; color: #fff; }
.c-select-wrapper select option { color: #000; }
.c-select-wrapper i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.5); pointer-events: none; }

.file-upload-box { border: 2px dashed rgba(255,255,255,0.2); border-radius: 12px; padding: 30px; text-align: center; position: relative; cursor: pointer; transition: all 0.3s; background: rgba(255,255,255,0.02); }
.file-upload-box:hover { border-color: var(--accent-gold); background: rgba(245, 176, 39, 0.05); }
.file-upload-box i { font-size: 2rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; display: block; }
.file-upload-box span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.file-upload-box input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

.btn-submit-career { background: linear-gradient(135deg, var(--accent-gold) 0%, #e09b1f 100%); color: #fff; font-size: 1.1rem; font-weight: 700; padding: 20px; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit-career:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(245, 176, 39, 0.3); }

@media (max-width: 768px) {
    .job-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .c-form-row { flex-direction: column; gap: 20px; }
    .career-form-wrapper { padding: 30px 20px; }
}

/* ==================== LEGAL PAGES STYLES ==================== */
.legal-page-container { background: var(--bg-dark); color: #fff; padding: 150px 5% 80px; min-height: 80vh; }
.legal-content-wrapper { max-width: 900px; margin: 0 auto; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.legal-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 30px; text-align: center; color: var(--accent-gold); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.legal-content h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-top: 30px; margin-bottom: 15px; }
.legal-content p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 15px; }
.legal-content ul { padding-left: 20px; margin-bottom: 20px; }
.legal-content li { color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 8px; list-style-type: disc; }

@media (max-width: 768px) {
    .legal-content-wrapper { padding: 30px 20px; }
    .legal-title { font-size: 2rem; }
}

/* ==================== LANGUAGE SWITCHER ==================== */
.header-right { display: flex; align-items: center; gap: 15px; }
.lang-switcher { display: flex; align-items: center; }
.lang-btn { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 5px 10px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: all 0.3s; }
.lang-btn:hover { background: var(--accent-gold); border-color: var(--accent-gold); color: #111; }

/* ==================== MENU TOGGLE (MOBILE ONLY) ==================== */
.menu-toggle { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; transition: color 0.3s; }
.menu-toggle:hover { color: var(--accent-gold); }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
}
