/* Website 185 - Origami Steps Layout - Orange Theme */
:root {
    --primary-color: #ea580c;
    --primary-dark: #c2410c;
    --primary-light: #fb923c;
    --accent-color: #0d9488;
    --accent-light: #2dd4bf;
    --background: #1a0f0a;
    --surface: #2d1a10;
    --surface-light: #3d2515;
    --text-primary: #ffffff;
    --text-secondary: #fed7aa;
    --text-muted: #fdba74;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', sans-serif; background: var(--background); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }

.origami-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(ellipse at 30% 30%, rgba(234, 88, 12, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 70% 70%, rgba(13, 148, 136, 0.08) 0%, transparent 50%); }
.origami-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(234, 88, 12, 0.02) 40px, rgba(234, 88, 12, 0.02) 80px); }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26, 15, 10, 0.95); backdrop-filter: blur(20px); padding: 0 5%; height: 70px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(234, 88, 12, 0.3); }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-light); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: transform 0.3s ease; }
.logo-icon:hover { transform: rotate(90deg); }
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; padding: 10px 18px; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; position: relative; clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); }
.nav-links a:hover { color: var(--text-primary); background: rgba(234, 88, 12, 0.2); }
.nav-links a.active { color: var(--primary-light); background: rgba(234, 88, 12, 0.15); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }
.mobile-menu-btn span { width: 25px; height: 3px; background: var(--primary-light); transition: all 0.3s ease; }

.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 5% 50px; position: relative; }
.hero-content { text-align: center; max-width: 900px; margin-bottom: 60px; }
.hero-title { font-size: 3rem; font-weight: 800; margin-bottom: 20px; background: linear-gradient(135deg, #fb923c, #2dd4bf, #fb923c); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: origamiFold 5s ease infinite; }
@keyframes origamiFold { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

/* Origami Steps Container */
.steps-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; max-width: 1100px; width: 100%; }
.step-card { background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(234, 88, 12, 0.2); padding: 25px; width: 200px; cursor: pointer; transition: all 0.4s ease; clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); transform: perspective(500px) rotateY(var(--rot, 0deg)); }
.step-card:nth-child(1) { --rot: -3deg; margin-top: 0; }
.step-card:nth-child(2) { --rot: 2deg; margin-top: 40px; }
.step-card:nth-child(3) { --rot: -2deg; margin-top: 20px; }
.step-card:nth-child(4) { --rot: 3deg; margin-top: 60px; }
.step-card:nth-child(5) { --rot: -1deg; margin-top: 0; }
.step-card:nth-child(6) { --rot: 2deg; margin-top: 30px; }
.step-card:hover { transform: perspective(500px) rotateY(0deg) translateY(-10px) scale(1.05); border-color: var(--primary-color); box-shadow: 0 15px 40px rgba(234, 88, 12, 0.3); }
.step-card .icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.step-card .title { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 5px; }
.step-card .desc { font-size: 0.75rem; color: var(--text-secondary); }

.cta-buttons { display: flex; gap: 20px; margin-top: 50px; flex-wrap: wrap; justify-content: center; }
.btn { padding: 14px 32px; border-radius: 0; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); }
.btn-primary { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4); }
.btn-secondary { background: transparent; color: var(--primary-light); border: 2px solid var(--primary-color); }
.btn-secondary:hover { background: var(--primary-color); color: white; }

.section { padding: 80px 5%; position: relative; }
.section-title { font-size: 2.3rem; font-weight: 700; text-align: center; margin-bottom: 50px; color: var(--text-primary); }
.section-title span { background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.card { background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(234, 88, 12, 0.15); padding: 30px; transition: all 0.4s ease; clip-path: polygon(5% 0%, 98% 0%, 95% 100%, 3% 100%); }
.card:hover { transform: translateY(-8px); border-color: var(--primary-color); box-shadow: 0 15px 45px rgba(234, 88, 12, 0.2); }
.card-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.card p { color: var(--text-secondary); line-height: 1.7; }

.stats-section { background: linear-gradient(135deg, var(--surface), #1a0f0a); padding: 60px 5%; border-top: 1px solid rgba(234, 88, 12, 0.2); border-bottom: 1px solid rgba(234, 88, 12, 0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-item { padding: 20px; }
.stat-number { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 8px; }

.vertical-steps { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.vertical-step { display: flex; align-items: center; gap: 20px; padding: 20px; background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(234, 88, 12, 0.15); border-radius: 0; transition: all 0.3s ease; clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%); }
.vertical-step:hover { border-color: var(--primary-color); transform: translateX(10px); }
.step-num { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.step-content h3 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 5px; }
.step-content p { font-size: 0.85rem; color: var(--text-secondary); }

.contact-section { max-width: 600px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 18px; padding: 18px 22px; background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(234, 88, 12, 0.15); transition: all 0.3s ease; clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%); }
.contact-item:hover { border-color: var(--primary-color); transform: translateX(10px); }
.contact-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-details h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 3px; }
.contact-details p { font-size: 1rem; color: var(--text-primary); }

.footer { background: var(--surface); padding: 50px 5% 30px; border-top: 1px solid rgba(234, 88, 12, 0.2); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto 30px; }
.footer-section h4 { font-size: 1.05rem; margin-bottom: 15px; color: var(--primary-light); }
.footer-section p, .footer-section a { color: var(--text-secondary); text-decoration: none; display: block; margin-bottom: 8px; transition: all 0.3s ease; }
.footer-section a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 22px; border-top: 1px solid rgba(234, 88, 12, 0.1); color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 768px) {
    .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: rgba(26, 15, 10, 0.98); flex-direction: column; padding: 20px; gap: 8px; transform: translateY(-100%); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .steps-container { flex-direction: column; align-items: center; }
    .step-card { width: 100%; max-width: 280px; margin: 10px 0 !important; transform: none !important; }
    .section-title { font-size: 1.6rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 260px; text-align: center; }
}

.page-header { padding: 120px 5% 60px; text-align: center; background: linear-gradient(135deg, var(--surface), var(--background)); }
.page-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 14px; background: linear-gradient(135deg, var(--primary-light), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 620px; margin: 0 auto; }

.service-detail { padding: 60px 5%; }
.service-detail-card { background: linear-gradient(135deg, var(--surface), var(--surface-light)); border: 1px solid rgba(234, 88, 12, 0.15); padding: 40px; max-width: 900px; margin: 0 auto; clip-path: polygon(2% 0%, 98% 0%, 96% 100%, 4% 100%); }
.service-detail-card h2 { font-size: 1.6rem; margin-bottom: 18px; color: var(--text-primary); }
.service-detail-card p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.service-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 22px; }
.service-feature { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: rgba(234, 88, 12, 0.08); border-radius: 0; }
.service-feature-icon { font-size: 1.3rem; flex-shrink: 0; }
.service-feature-text h4 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 3px; }
.service-feature-text p { font-size: 0.75rem; color: var(--text-secondary); margin: 0; }

.fade-in { opacity: 0; transform: translateY(25px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
